Name

Directory.Delete Method

Class

System.IO.Directory

Syntax

Directory.Delete(path [,recursive])
path

Use: Required

Data Type: String

The path of the folder to delete.

recursive

Use: Optional

Data Type: Boolean

Indicates whether the folder and its contents are to be deleted if the folder is not empty. Its default value is False.

Return Value

None

Description

Removes or deletes an existing directory

Rules at a Glance

  • If path does not exist, the method generates a runtime error.

  • If recursive is set to False (its default value), the directory must be empty to be successfully deleted; otherwise, a runtime error will be generated.

  • If recursive is set to True, the method will delete not only the final directory in path, but also of its files and all of its subdirectories, as well as all nested subdirectories and nested files.

  • path can be either an absolute path (a complete path from the root directory to the directory whose existence is to be confirmed) or a relative path (starting from the current directory to the path whose existence is to be confirmed).

  • path can be either a path on the local system, the path of a mapped network drive, or a UNC path.

  • path cannot contain wildcard characters.

Programming Tips and Gotchas

  • The Delete method permanently deletes directories and their contents. It doesn’t move them to the Recycle Bin.

  • Care must be taken when setting recursive to True due to the danger of accidentally removing files, especially since the method does not prompt whether it should delete ...

Get VB .NET Language in a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.