我现在正在为基本的虚拟文件系统存档(不压缩)编写一个提取器。
我的提取器在将文件写入不存在的目录时遇到问题。
提取功能:
void extract(ifstream * ifs, unsigned int offset, unsigned int length, std::string path)
{
char * file = new char[length];
ifs->seekg(offset);
ifs->read(file, length);
ofstream ofs(path.c_str(), ios::out|ios::binary);
ofs.write(file, length);
ofs.close();
cout << patch << ", " << length << endl;
system("pause");
delete [] file;
}
ifs
是 vfs 根文件,offset
是文件启动时的值,length
是文件长度,path
是文件中保存偏移量 len 等的值。
例如路径是 data/char/actormotion.txt。
谢谢。