NativeFileIOAddProcessPaths Method (Boolean, String) |
Adds a semicolon separated list of paths to the PATH environment variable of
current process. Any paths already in present PATH variable are not added again.
Namespace:
Arsenal.ImageMounter.IO
Assembly:
Arsenal.ImageMounter (in Arsenal.ImageMounter.dll) Version: 1.0.0.0 (3.4.140.0)
Syntax public static void AddProcessPaths(
bool BeforeExisting,
string AddPaths
)
Public Shared Sub AddProcessPaths (
BeforeExisting As Boolean,
AddPaths As String
)
public:
static void AddProcessPaths(
bool BeforeExisting,
String^ AddPaths
)
static member AddProcessPaths :
BeforeExisting : bool *
AddPaths : string -> unit
Parameters
- BeforeExisting
- Type: SystemBoolean
Indicates whether to insert new paths before existing path list or move
existing of specified paths first if True, or add new paths after existing path list if False. - AddPaths
- Type: SystemString
Semicolon separated list of directory paths
See Also