開發平台(Platform): (Ex: VC++, GCC, Linux, ...)
vs c++ 2015
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
1. qt5.7
2. 7z.zip
問題(Question):
c++ cmd call 7z.exe之後
如果解壓縮地方有重複的檔案 7z會問你要不要覆蓋
想請問如果要覆蓋的話 c++這邊的指令要怎麼寫呢?
http://imgur.com/cbB5N7C
程式碼(Code):(請善用置底文網頁, 記得排版)
#include "stdafx.h"
#include <stdlib.h>
#include <atlstr.h>
int main(int argc, char* argv[])
{
char* unz = "7z x mydir.zip";
system(unz);
system("pause");
}