网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 论文素材 设计下载 最新论文 下载排行 论文上传 在线投稿 联系我们
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > DELPHI > 正文
Delphi清理指定文件夹下的过期临时文件
来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 12/10/12
下载{$ArticleTitle}原创论文样式

有些时候系统会生成很多临时文件,我们需要提供清理临时文件的功能。

编程论坛最近有人讨论这个问题,小新就把自己的方法和大家分享一下。

在Delphi中可以利用FindFirst/FindNext函数例遍制定目录的文件,并根据文件名和生成时间来判断是否需要清除。

其中关于文件生成时间需要从FileData的结构体里ftCreationTime获得,ftCreationTime为_FileTime结构C++声明如下

typedef struct _FILETIME { // ft
    DWORD dwLowDateTime;
    DWORD dwHighDateTime;
} FILETIME;

此结构需要通过API FileTimeToSystemTime来转换成系统时间,声明如下

BOOL FileTimeToSystemTime(
    CONST FILETIME *lpFileTime, // pointer to file time to convert
    LPSYSTEMTIME lpSystemTime // pointer to structure to receive system time
   );

systemtime声明如下

typedef struct _SYSTEMTIME {  // st
    WORD wYear;
    WORD wMonth;
    WORD wDayOfWeek;
    WORD wDay;
    WORD wHour;
    WORD wMinute;
    WORD wSecond;
    WORD wMilliseconds;
} SYSTEMTIME;

这样就可以通过系统时间来判断是否是指定日期之前的临时数据了。

程序如下

function ClearTempFile: Boolean;
var
  SearchRec: TSearchRec;
  systime: TSystemTime;
  path: string;
begin
  result := false;
  path := ExtractFilePath(Application.ExeName) + ''web\chart\'';
  if not DirectoryExists(path) then
    Exit;
  if FindFirst(path + ''*.gif'', faAnyFile, SearchRec) <> 0 then
  begin
    exit;
  end;
  repeat
    if (SearchRec.Attr and faDirectory) = faDirectory then  //判断是否是目录
      Continue;
    if SearchRec.Name <> ''score.gif'' then  //如果是指定文件则不删除
    begin
      FileTimeToSystemTime(SearchRec.FindData.ftCreationTime, systime);
      if EncodeDate(systime.wYear, systime.wMonth, systime.wDay) < Date then  //是否是一天以前的临时数据
      begin
        //ShowMessage(''应该删除'' + SearchRec.Name);
        DeleteFile(path + SearchRec.Name);
      end;
    end;
  until FindNext(SearchRec) <> 0;  //直到没有文件
  FindClose(SearchRec);
  result := true;
end;

欢迎大家到http://www.programbbs.com交流讨论。

以上程序在Delphi7下测试通过。

  • 下一篇资讯: Delphi操作流文件详解
  • 网学推荐

    免费论文

    原创论文

    浏览:
    设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
    版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
    湘ICP备09003080号