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