NativeFileIOAddProcessPaths Method (Boolean, String) |
Adds a 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,
params string[] AddPathsArray
)
Public Shared Sub AddProcessPaths (
BeforeExisting As Boolean,
ParamArray AddPathsArray As String()
)
public:
static void AddProcessPaths(
bool BeforeExisting,
... array<String^>^ AddPathsArray
)
static member AddProcessPaths :
BeforeExisting : bool *
AddPathsArray : 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. - AddPathsArray
- Type: SystemString
Array of directory paths
See Also