Kernel32SetCurrentDirectory Method
Changes the current directory for the current process.
Namespace: DevCase.Win32.NativeMethodsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[DllImportAttribute("Kernel32.dll", CharSet = CharSet.Auto, BestFitMapping = false,
ThrowOnUnmappableChar = true, SetLastError = true)]
public static bool SetCurrentDirectory(
string pathName
)
<DllImportAttribute("Kernel32.dll", CharSet := CharSet.Auto, BestFitMapping := false,
ThrowOnUnmappableChar := true, SetLastError := true>]
Public Shared Function SetCurrentDirectory (
pathName As String
) As Boolean
Dim pathName As String
Dim returnValue As Boolean
returnValue = Kernel32.SetCurrentDirectory(pathName)
public:
[DllImportAttribute(L"Kernel32.dll", CharSet = CharSet::Auto, BestFitMapping = false,
ThrowOnUnmappableChar = true, SetLastError = true)]
static bool SetCurrentDirectory(
String^ pathName
)
[<DllImportAttribute("Kernel32.dll", CharSet = CharSet.Auto, BestFitMapping = false,
ThrowOnUnmappableChar = true, SetLastError = true)>]
static member SetCurrentDirectory :
pathName : string -> bool
No code example is currently available or this language may not be supported.
- pathName String
-
The path to the new current directory.
This parameter may specify a relative path or a full path.
In either case, the full path of the specified directory is calculated and stored as the current directory.
Boolean
If the function succeeds, the return value is
.
If the function fails, the return value is
.
To get extended error information, call
GetLastWin32Error.