PHP と同じハンド コードクラスSplFileObject
または VC++ プラグインはありますか?
質問https://stackoverflow.com/questions/10650864/fetching-nth-line-of-a-file/10650864#10650864を参照してください。C++を使用してこれを実現したい
PHP と同じハンド コードクラスSplFileObject
または VC++ プラグインはありますか?
質問https://stackoverflow.com/questions/10650864/fetching-nth-line-of-a-file/10650864#10650864を参照してください。C++を使用してこれを実現したい
なぜそれを使用したいのかわからない、iostreams や boost::filesystem はどうですか?
http://msdn.microsoft.com/de-de/library/22z6066f%28v=vs.100%29
http://www.boost.org/doc/libs/1_49_0/libs/filesystem/v3/doc/index.htm
更新(コメントを読んだ後にコード例を追加):
じゃあこういうこと?
#include <iostream>
#include <fstream>
#include <string>
int main(int argc, char* argv[])
{
auto fd = std::fstream("veryLargeFile.txt");
if (fd.good()) {
std::string buffer;
fd.seekg(200000);
std::getline(fd, buffer);
std::cout << buffer << std::endl;
}
fd.close();
return 0;
}