C
cc_cn
Unregistered / Unconfirmed
GUEST, unregistred user!
将网络文件夹映射成Z:盘,Z盘下有一个1.msg文件,我在线程里用DeleteFile却怎么都删不掉,请问是为什么?
procedure TMyThread.Execute;
begin
......
if FileExists(str_dest) then
begin
SetFileAttributes(PChar(str_dest), FILE_ATTRIBUTE_NORMAL);
if not DeleteFile(str_dest) then //在这里总是删不掉文件
begin
Synchronize(DelFileFailed);
CopyFiles.Delete(0);
continue;
end;
end;
......
end;
procedure TMyThread.Execute;
begin
......
if FileExists(str_dest) then
begin
SetFileAttributes(PChar(str_dest), FILE_ATTRIBUTE_NORMAL);
if not DeleteFile(str_dest) then //在这里总是删不掉文件
begin
Synchronize(DelFileFailed);
CopyFiles.Delete(0);
continue;
end;
end;
......
end;