An array of the full names (including paths) of subdirectories in the specified path, or an empty array if no directories are found.
Type Reason ArgumentNullException path is null. System.Security.SecurityException The caller does not have the required permission. ArgumentException path is a zero-length string, contains only white space, or contains implementation-specific invalid characters. System.IO.DirectoryNotFoundException path was not found. System.IO.PathTooLongException The length of path or the absolute path information for path exceeds the system-defined maximum length. System.IO.IOException path is a file name. UnauthorizedAccessException The caller does not have the required permission.
This method is identical to Directory.GetDirectories(string, string) with the asterisk (*) specified as the search pattern, so it returns all subdirectories.If you need to search subdirectories, use the Directory.GetDirectories(string, string, SearchOption) method, which enables you to specify a search of subdirectories with the searchOption parameter.
The erload:System.IO.Directory.EnumerateDirectories and erload:System.IO.Directory.GetDirectories methods differ as follows: When you use erload:System.IO.Directory.EnumerateDirectories, you can start enumerating the collection of names before the whole collection is returned; when you use erload:System.IO.Directory.GetDirectories, you must wait for the whole array of names to be returned before you can access the array. Therefore, when you are working with many files and directories, erload:System.IO.Directory.EnumerateDirectories can be more efficient.
The path parameter can specify relative or absolute path information. Relative path information is interpreted as relative to the current working directory. To obtain the current working directory, see Directory.GetCurrentDirectory.
The names returned by this method are prefixed with the directory information provided in path.
The path parameter is not case-sensitive.
For a list of common I/O tasks, see Common I/O Tasks.
Type | Reason |
---|---|
System.Security.Permissions.FileIOPermission | Requires permission to access path information for the specified directory and its subdirectories. See System.Security.Permissions.FileIOPermissionAccess.PathDiscovery. |