2个回答
2013-09-23
展开全部
procedure TForm1.DelFiles(FilePath:String;StartDt,EndDt:Tdatetime);
var
f:TSearchRec;
sPath,sFile: String;
dt:TDateTime;
begin
//检查目录名后面是否有
'\\'
if
Copy(FilePath,Length(FilePath),1) <>
'\\'
then
sPath := FilePath
+
'\\'
else
sPath := FilePath;
if
FindFirst(sPath+'*.*',faAnyFile, f)= 0 then
begin
repeat
sFile:=Trim(f.Name);
if
sFile='.'
then
Continue;
if
sFile='..'
then
Continue;
sFile:=sPath+f.Name;
if
(f.Attr
and
faDirectory)<>0
then
DelFiles(sFile,StartDt,EndDt)
else
if
(f.Attr and faAnyFile) = f.Attr
then
begin
dt:=FileDateToDateTime(f.Time);
if (dt>StartDt) and (dt<EndDt) then
DeleteFile(sFile);
//删除文件
end;
until
FindNext(f)
<>
0;
FindClose(f);
end;
end;
在你的按钮事件里调用这个方法
第一个参数是完整的文件路径
第二个是开始时间
第三个是结束时间
有问题留言给我
var
f:TSearchRec;
sPath,sFile: String;
dt:TDateTime;
begin
//检查目录名后面是否有
'\\'
if
Copy(FilePath,Length(FilePath),1) <>
'\\'
then
sPath := FilePath
+
'\\'
else
sPath := FilePath;
if
FindFirst(sPath+'*.*',faAnyFile, f)= 0 then
begin
repeat
sFile:=Trim(f.Name);
if
sFile='.'
then
Continue;
if
sFile='..'
then
Continue;
sFile:=sPath+f.Name;
if
(f.Attr
and
faDirectory)<>0
then
DelFiles(sFile,StartDt,EndDt)
else
if
(f.Attr and faAnyFile) = f.Attr
then
begin
dt:=FileDateToDateTime(f.Time);
if (dt>StartDt) and (dt<EndDt) then
DeleteFile(sFile);
//删除文件
end;
until
FindNext(f)
<>
0;
FindClose(f);
end;
end;
在你的按钮事件里调用这个方法
第一个参数是完整的文件路径
第二个是开始时间
第三个是结束时间
有问题留言给我
2013-09-23
展开全部
我选择我喜欢的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询