Environment.SpecialFolderOption Enum
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.
Specifies options to use for getting the path to a special folder.
public: enum class Environment::SpecialFolderOption
public enum Environment.SpecialFolderOption
type Environment.SpecialFolderOption =
Public Enum Environment.SpecialFolderOption
- Inheritance
Fields
Name | Value | Description |
---|---|---|
None | 0 | The path to the folder is verified. If the folder exists, the path is returned. If the folder does not exist, an empty string is returned. This is the default behavior. |
DoNotVerify | 16384 | The path to the folder is returned without verifying whether the path exists. If the folder is located on a network, specifying this option can reduce lag time. |
Create | 32768 | The path to the folder is created if it does not already exist. |
Remarks
The System.Environment.SpecialFolderOption enumeration is used to define the precise behavior of the Environment.GetFolderPath method.