Directory.SetCurrentDirectory Method
Assembly: mscorlib (in mscorlib.dll)
| Exception type | Condition |
|---|---|
| An IO error occurred. | |
| path is a zero-length string, contains only white space, or contains one or more invalid characters as defined by InvalidPathChars. | |
| path is a null reference (Nothing in Visual Basic). | |
| The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. | |
| The caller does not have the required permission to access unmanaged code. | |
| The specified path was not found. |
When the application terminates, the working directory is restored to its original location (the directory where the process was started).
The path parameter is permitted to 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 GetCurrentDirectory.
The path parameter is not case-sensitive.
The following table lists examples of other typical or related I/O tasks.
| To do this... | See the example in this topic... |
|---|---|
| Create a text file. | |
| Write to a text file. | |
| Read from a text file. | |
| Rename or move a directory. | |
| Delete a directory. | |
| Create a directory. | |
| Create a subdirectory. |
Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows CE Platform Note: Because some mobile device operating systems do not have current directory functionality, this method is not supported.
The following code example illustrates setting the current directory and displaying the directory root.
// This sample shows how to set the current directory and how to determine // the root directory. using System; using System.IO; namespace IOSamples { public class DirectoryRoot { public static void Main() { // Create string for a directory. This value should be an existing directory // or the sample will throw a DirectoryNotFoundException. string dir = @"C:\test"; try { //Set the current directory. Directory.SetCurrentDirectory(dir); } catch (DirectoryNotFoundException e) { Console.WriteLine("The specified directory does not exist. {0}", e); } // Print to console the results. Console.WriteLine("Root directory: {0}", Directory.GetDirectoryRoot(dir)); Console.WriteLine("Current directory: {0}", Directory.GetCurrentDirectory()); } } } // The output of this sample depends on what value you assign to the variable dir. // If the directory c:\test exists, the output for this sample is: // Root directory: C:\ // Current directory: C:\test
// This sample shows how to set the current directory and how to determine
// the root directory.
import System.*;
import System.IO.*;
public class DirectoryRoot
{
public static void main(String[] args)
{
// Create string for a directory. This value should be an existing
// directory or the sample will throw a DirectoryNotFoundException.
String dir = "C:\\test";
try {
//Set the current directory.
Directory.SetCurrentDirectory(dir);
}
catch (DirectoryNotFoundException e) {
Console.WriteLine("The specified directory does not exist. {0}", e);
}
// Print to console the results.
Console.WriteLine("Root directory: {0}",
Directory.GetDirectoryRoot(dir));
Console.WriteLine("Current directory: {0}",
Directory.GetCurrentDirectory());
} //main
} //DirectoryRoot
// The output of this sample depends on what value you assign to the
// variable dir.
// If the directory c:\test exists, the output for this sample is:
// Root directory: C:\
// Current directory: C:\test
- FileIOPermission for writing to files or directories. Associated enumeration: FileIOPermissionAccess.Write
- SecurityPermission for calling unmanaged code. Associated enumeration: SecurityPermissionFlag.UnmanagedCode
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.