FileSystem.CurrentDirectory 属性

定义

获取或设置当前目录。

public:
 static property System::String ^ CurrentDirectory { System::String ^ get(); void set(System::String ^ value); };
public static string CurrentDirectory { get; set; }
static member CurrentDirectory : string with get, set
Public Shared Property CurrentDirectory As String

属性值

文件 I/O 操作的当前目录。

例外

该路径无效。

该用户缺少必要的权限。

示例

此示例返回当前目录并将其显示在消息框中。

MsgBox(My.Computer.FileSystem.CurrentDirectory)

此示例将当前目录设置为 C:\TestDirectory

My.Computer.FileSystem.CurrentDirectory = "C:\TestDirectory"

注解

CurrentDirectory 是系统范围的环境变量。

适用于