Enum TargetDirectoryCreation
Behavior for target directory creation.
public enum TargetDirectoryCreation
Fields
Create = 1Create the target directory. Does not fail if it already exists.
CreateNew = 3Create the target directory. Fails if it already exists.
CreateWithParents = 2Create the target directory and parent directories.
None = 0Do not create the target directory.