Process4.CurrentDirectory Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the current directory of the process being debugged. This is a read-only property.
public:
property System::String ^ CurrentDirectory { System::String ^ get(); };
public:
property Platform::String ^ CurrentDirectory { Platform::String ^ get(); };
[System.Runtime.InteropServices.DispId(2103)]
public string CurrentDirectory { [System.Runtime.InteropServices.DispId(2103)] get; }
[<System.Runtime.InteropServices.DispId(2103)>]
[<get: System.Runtime.InteropServices.DispId(2103)>]
member this.CurrentDirectory : string
Public ReadOnly Property CurrentDirectory As String
Property Value
String that contains the path to the current directory of the process.
- Attributes
Remarks
The path this property gets is the same path that will be returned if the process calls kernel32!GetCurrentDirectory
.