如果我不知道一个文件是否存在。如果它存在,我将根据该文件中的内容做一些事情。该文件可以是 .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 完全不存在时出现错误。我该如何解决?