文件名称:tar打包技术(简单实用)
文件大小:4KB
文件格式:RAR
更新时间:2021-03-02 02:50:52
tar打包
std::ofstream o("C:\\Users\\Administrator\\Desktop\\test.tar", std::ofstream::app | std::ofstream::out | std::ofstream::binary); tar::writer wt(o); wt.put_file("a.jpg", "C:\\Users\\Administrator\\Desktop\\a.jpg"); wt.finish(); o.close(); 如何增加文件夹1下的a.txt文件? C:\\Users\\Administrator\\Desktop\\1\\a.txt
【文件预览】:
tar.h
tar.cpp