ArcWizard.Tasks.IO.MoveDirectoryTask.Move C# (CSharp) Метод

Move() публичный Метод

public Move ( string sourcePath, string destinationPath ) : void
sourcePath string
destinationPath string
Результат void
        public void Move(string sourcePath, string destinationPath)
        {
            if (!Directory.Exists(sourcePath)) return;

            Logger.WriteLine("Moving project from " + sourcePath + " to target location at " + destinationPath);
            Directory.Move(sourcePath, destinationPath);
        }
MoveDirectoryTask