Alquimiaware.NuGetUnity.FileSystemFolderCommands.Delete C# (CSharp) Method

Delete() public method

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