摘要:
一下内容摘自百度文库。//读取方式: 逐行读取, 将行读入字符串, 行之间用回车换行区分//If you want to avoid reading into character arrays,//you can use the C++ string getline() function to read lines into stringsvoid ReadDataFromFileLBLIntoString() { ifstream fin("data.txt"); string s; while( getline(fin,s) ) { cout > s ) { co 阅读全文
摘要:
可以使用hlep dir查看帮助dir /a-d /b d:\mydir\*.* > d:\allfiles.txt/b是只保留文件名和后缀,不包含其他注释/a-d表示不输出目录名字dir /s /b d:\mydir > d:\allfiles.txt可以输出子文件夹 阅读全文