www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - Read whole file

reply "pgtkda" <dlang byom.de> writes:
How can i read the whole file if i use this:

File("C:\\Users\\text\\Desktop\\test.csv", "r");
Jul 15 2014
parent "bearophile" <bearophileHUGS lycos.com> writes:
pgtkda:

 How can i read the whole file if i use this:

 File("C:\\Users\\text\\Desktop\\test.csv", "r");
In std.file there are two functions to read a file or read a text file, named read and readText. Bye, bearophile
Jul 15 2014