Achilles.Acme.Storage.IO.Directory.Delete C# (CSharp) Method

Delete() public static method

Deletes an empty directory from a specified path.
public static Delete ( string path ) : void
path string Path for directory to delete.
return void
        public static void Delete( string path )
        {
            Delete( path, false );
        }

Same methods

Directory::Delete ( string path, bool recursive ) : void