RemoveDirectory() public abstract method

public abstract RemoveDirectory ( string fullPath, bool recursive ) : void
fullPath string
recursive bool
return void
Exemplo n.º 1
0
 public void Delete(bool recursive)
 {
     FileSystem.RemoveDirectory(FullPath, recursive);
 }
Exemplo n.º 2
0
 public override void Delete()
 {
     FileSystem.RemoveDirectory(FullPath, false);
 }
Exemplo n.º 3
0
        public static void Delete(string path, bool recursive)
        {
            string fullPath = Path.GetFullPath(path);

            FileSystem.RemoveDirectory(fullPath, recursive);
        }
Exemplo n.º 4
0
 public override void Delete() => FileSystem.RemoveDirectory(FullPath, recursive: false);
Exemplo n.º 5
0
        public static void Delete(string path)
        {
            string fullPath = Path.GetFullPath(path);

            FileSystem.RemoveDirectory(fullPath, false);
        }