C ++ - Linux - 删除至少5天的指定目录中的文件

时间:2014-06-26 18:37:40

标签: c++ linux

如何修改此代码以删除指定目录中至少7天的所有文件。以下是我的以下源代码:

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <direct.h>
#include <cstring>

int main(int argc, char* argv[1]) { 
 if (argc < 2) { 
      std:cerr<<"Usage: " << argv[0] << " <filename>" << std::endl;
      return 1;
 }

 struct stat buffer;

 for (int i; i < argc; ++i) { 
      int result = stat(argc[i], &buffer);

      if (result != 0) { 
           std::cerr << argv[i] << ": "<<stderror(errno) << std::endl;
           continue;
      }

      char datetime[100] = [0];
      const struct tm* time = localtime(sbuffer.st_mtime);
      result = strftime(datetime, 100, "%c", time);

      std::cout << argv[i] << ": " << datetime << std::endl;
 }

 return 0;
}

如何获取文件的年龄并删除超过7天的文件?任何建议将不胜感激!

2 个答案:

答案 0 :(得分:2)

仔细阅读 stat(2)time(7)手册页。您的sbuffer包含st_mtime字段。将其与当前时间进行比较,例如,使用time(2)

请注意,一天通常为86400秒,因此7天为7 * 86400,即604800秒。

要删除文件,请使用unlink(2)。我建议使用readdir(3)opendir(3)来阅读目录。 (但忽略...条目。

我还建议收集要删除的文件名列表,例如在std::vector<std::string>

如果要递归扫描目录(及其子目录等),请考虑nftw(3)

(您可能不想在家庭作业中使用system

答案 1 :(得分:2)

可以这么简单:

system( "find <dir> -maxdepth 1 -mtime 5 -exec rm -f {} \;" );

但如果您有特定要求,则需要发布它们。