MoveTo(Destination: String);
Destination - a path that corresponds to a directory into which one should be moved.
The MoveTo method moves a directory with all its contents.
Sub Main;
Var
Dir: IDirectoryInfo;
Begin
Dir:=New DirectoryInfo.Attach("c:\New_folder");
If Dir.Exists Then
Dir.MoveTo("c:\Temp");
End If;
Dispose Dir;
End Sub Main;
After executing this example, a New_folder directory with all its content is moved to Temp.
See also: