我想使用c编程使用winzip命令行解压缩文件,我编写了以下代码,但执行后显示 system 命令无法识别内部或外部命令
#include <stdio.h>
#include <stdlib.h>
#include<conio.h>
#include <string.h>
void fmuUnzip() {
char fmuFileName[100], path[100],strFinal[100];
char unzip[512]="wzunzip";
printf("Enter fmuFileName\n");
gets(fmuFileName);
printf("Enter path of the fmuFileName\n");
gets(path);
strcat(unzip," ");
strcat(unzip,fmuFileName);
strcat(unzip," ");
strcat(unzip,path);
//printf("The string is : %s",unzip);
system(unzip);
//getch();
}
void fmuLoad() {
fmuUnzip();
}
int main(int argc,char* argv[]) {
fmuLoad();
}
答案 0 :(得分:1)
特别是在Windows系统中,新程序不是系统路径的自动成员,您应该使用该命令的完整路径。
在您的示例中,您应该写:
char unzip[512]="\"C:\\Program Files\\WinZip\\WZUNZIP.EXE\"";
请注意\\
在C字符串中包含真实的\
,并强制"
强制system
调用以将路径视为单个字符串一句话 - 感谢@willywonka_dailyblah注意到它