0

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

4

2 回答 2

2

只需对各种可能的名称调用 fstat() 并检查产生的错误(如果有)。

于 2013-10-16T06:52:14.923 回答
0

如果您使用的是 POSIX 系统(如 Linux、BSD 或 OSX),那么您可以使用它stat来查看文件是否存在。在 Windows 上使用PathFileExists.

或者使用Boost 文件系统库,就像它的exists功能一样。

于 2013-10-16T06:54:07.833 回答