Alquimiaware.NuGetUnity.FileSystemFolderCommands.Delete C# (CSharp) 메소드

Delete() 공개 메소드

public Delete ( string path ) : void
path string
리턴 void
        public void Delete(string path)
        {
            Directory.Delete(path, true);
        }
FileSystemFolderCommands