是否有任何与 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;
}