| C# | |
|---|---|
public static void DirectoryDeleteDirectory( string pathToDirectory, bool recursive, bool onlyFromStartupPath ) | |
Parameters
- pathToDirectory
Type: System.String
Path to the directory.
- recursive
Type: System.Boolean
true if removingrecursively; otherwise, false.
- onlyFromStartupPath
Type: System.Boolean
true if not removethe directorydoes notbelong tothe startup directory; otherwise, false.
The following example shows call the DirectoryDeleteDirectory method.
| C# | Copy Code |
|---|---|
string pathToDirectory = {pathToDirectory}; bool recursive = true; bool startupPath = false; FileSystem.DirectoryDeleteDirectory(pathToDirectory, recursive, startupPath); | |
| PHP | Copy Code |
|---|---|
$pathToDirectory = {pathToDirectory}; $recursive = true; $startupPath = false; FileSystem::DirectoryDeleteDirectory($pathToDirectory, $recursive, $startupPath); | |
Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family