我想遵循这个架构:
//Read filename
string filename;
cout << "ONLY Name of the file you want to read, not directory: ";
cin >> filename;
//Find file in disk C and open it
ifstream ifs(.................);
while( int cc = FileRead( ifs, buff ) ) {
etc. (trivial)
}