如果我不知道文件是否存在。如果存在,我会根据该文件中的内容做一些事情。该文件可以是.txt或.gz格式,该文件也可以不存在。下面是我的代码:
//Check whether is a zip file
char *pre_pcom_file_copy = new char[strlen(pre_pat_file)+7];
strcpy (pre_pcom_file_copy,pre_pcom_file);
strcat (pre_pcom_file_copy,".gz");
char *cmd = new char[strlen("gzip -dc ")+strlen(pre_pcom_file_copy)+1];
strcpy (cmd,"gzip -dc ");
strcat (cmd,pre_pcom_file_copy);
if ( (pre_pcom = popen(cmd,"r")) == NULL ){
//Do nothing
}else{
cout << "Parsing pre.pcomments file --->" << pre_pcom_file << endl;
pcomyyin = pre_pcom;
if(_vecTime.size() > 0){
//for pre_pcom _vecTime should be empty
pcom_time = _vecTime[_vecTime.size()-1];
}
first_time = 1; // make sure tester cycle start from 0 from pcomment file
pcomyyparse ();
pclose(pre_pcom);
//delete [] cmd;
cout << "Parsing pre.pcomments file DONE!" << endl;
}
我想检查一个与必须有的文件同名的文件,例如hello.abc,但我要检查的文件可能是hello.abc或hello.gz甚至不存在。如果我以上述方式这样做,当文件 hello.txt 或 hello.gz 完全不存在时,我会收到错误。我该如何解决这个问题?
只需对各种可能的名称调用 fstat(),并检查生成的错误(如果有)。
如果你使用的是POSIX系统(如Linux,BSD或OSX),那么你可以使用stat
来查看文件是否存在。在 Windows 上使用 PathFileExists
.
或者使用 Boost 文件系统库,就像它的exists
函数一样。