共用方式為


FileSystem.ChDir(String) 方法

定義

變更目前的目錄或資料夾。 My 功能提供了比 ChDir 函式更強大的檔案 I/O 作業產能和效能。 如需詳細資訊,請參閱CurrentDirectory

public:
 static void ChDir(System::String ^ Path);
public static void ChDir (string Path);
static member ChDir : string -> unit
Public Sub ChDir (Path As String)

參數

Path
String

必要。 字串運算式,用來識別要成為新預設目錄或資料夾的目錄或資料夾。 Path 可包括磁碟機。 如果未指定磁碟機,則 ChDir 會變更目前磁碟機上的預設目錄或資料夾。

例外狀況

Path 是空的。

指定的磁碟無效,或磁碟無法使用。

範例

此範例會使用 函 ChDir 式來變更目前的目錄或資料夾。

' Change current directory or folder to "MYDIR".
ChDir("MYDIR")

' Assume "C:" is the current drive. The following statement changes
' the default directory on drive "D:". "C:" remains the current drive.
ChDir("D:\WINDOWS\SYSTEM")

備註

ChDir 式會變更預設目錄,但不會變更預設磁碟驅動器。 例如,如果預設磁碟驅動器是 C,下列語句會變更磁碟驅動器 D 上的預設目錄,但 C 會維持預設磁碟驅動器:

ChDir("D:\TMP")

您可以輸入兩個期間來進行相對目錄變更,如下所示:

ChDir("..") ' Moves up one directory.

重要

ChDir 式需要 Unmanaged 程式代碼許可權,這可能會在部分信任的情況下影響其執行。 如需詳細資訊,請參閱 SecurityPermission 和 。

適用於

另請參閱