如何:在 Visual Basic 中创建目录
使用 My.Computer.FileSystem
对象的 CreateDirectory
方法来创建目录。
如果该目录已存在,则不引发任何异常。
创建目录
使用
CreateDirectory
方法,指定将在其中创建目录的位置的完整路径。 此示例在NewDirectory
中创建目录C:\Documents and Settings\All Users\Documents
。My.Computer.FileSystem.CreateDirectory( "C:\Documents and Settings\All Users\Documents\NewDirectory")
可靠编程
以下情况可能会导致异常:
目录名称格式不正确。 例如,它包含非法字符或仅为空白 (ArgumentException)。
要创建的目录的父目录为只读 (IOException)。
目录名称为
Nothing
(ArgumentNullException)。目录名称过长 (PathTooLongException)。
目录名称是一个冒号“:”(NotSupportedException)。
用户无权创建目录 (UnauthorizedAccessException)。
用户在部分信任情况下缺少权限 (SecurityException)。