1.2 拷貝目錄的函數:CopyDir
function CopyDir(sDirName:String;
sToDirName:string):Boolean;
begin
if Length(sDirName)< =0 then
exit;
//拷貝...
Result:=DoCopyDir(sDirName,sToDirName);
end;
2、刪除目錄
刪除目錄與拷貝目錄很類似,但為了能刪除位於根目錄下的一個空目錄,需要在輔助函數中設置一個標志變量,即:如果刪除的是空目錄,則置bEmptyDir為True,這一句已經用深色框表示了。
2.1刪除目錄的遞歸輔助函數:DoRemoveDir
function DoRemoveDir(sDirName:String):Boolean;
var
hFindFile:Cardinal;
tfile:String;
sCurDir:String;
bEmptyDir:Boolean;
FindFileData:WIN32_FIND_DATA;
begin
//如果刪除的是空目錄,則置bEmptyDir為True
//初始時,bEmptyDir為True
bEmptyDir:=True;
//先保存當前目錄
sCurDir:=GetCurrentDir;
SetLength(sCurDir,Length(sCurDir));
ChDir(sDirName);
hFindFile:=FindFirstFile('*.*',FindFileData);
if hFindFile< >INVALID_HANDLE_VALUE then
begin
repeat
tfile:=FindFileData.cFileName;
if (tfile='.') or (tfile='..') then
begin
bEmptyDir:=bEmptyDir and True;
Continue;
end;
//不是空目錄,置bEmptyDir為False
bEmptyDir:=False;
if FindFileData.dwFileAttributes=
FILE_ATTRIBUTE_DIRECTORY then
begin
if sDirName[Length(sDirName)]< >'\' then
DoRemoveDir(sDirName+'\'+tfile)
else
DoRemoveDir(sDirName+tfile);
if not RemoveDirectory(PChar(tfile)) then
result:=false
else
result:=true;
end
else
begin
if not DeleteFile(PChar(tfile)) then
result:=false
else
result:=true;
end;
until FindNextFile(hFindFile,FindFileData)=false;
FindClose(hFindFile);
end
else
begin
ChDir(sCurDir);
result:=false;
exit;
end;
//如果是空目錄,則刪除該空目錄
if bEmptyDir then
begin
//返回上一級目錄
ChDir('..');
//刪除空目錄
RemoveDirectory(PChar(sDirName));
end;
//回到原來的目錄下
ChDir(sCurDir);
result:=true;
end;
2.2刪除目錄的函數:DeleteDir
function DeleteDir(sDirName:String):Boolean;
begin
if Length(sDirName)< =0 then
exit;
//刪除...
Result:=DoRemoveDir(sDirName) and RemoveDir(sDirName);
end;
3、移動目錄
有了拷貝目錄和刪除目錄的函數,移動目錄就變得很簡單,只需順序調用前兩個函數即可:
function MoveDir(sDirName:String;
sToDirName:string):Boolean;
begin
if CopyDir(sDirName,sToDirName) then
if RemoveDir(sDirName) then
result:=True
else
result:=false;
end;