Win32FindDataEnumerateOptions Enumeration |
Defines options for enumeration methods.
Namespace:
ShellBoost.Core.Utilities
Assembly:
ShellBoost.Core (in ShellBoost.Core.dll) Version: 1.8.3.0
Syntax [FlagsAttribute]
public enum Win32FindDataEnumerateOptions
Members
| Member name | Value | Description |
---|
| None | 0 |
No option is defined.
|
| Recursive | 1 |
Enumeration is recursive.
|
| DepthFirst | 2 |
Enumeration is depth first.
|
| DontOverwriteIfExists | 4 |
Don't overwrite the target if it already exists.
Only for copy operation.
|
| DontOverwriteIfIdentical | 8 |
Don't overwrite the target if it already exists and is identical in size and last write time.
Only for copy operation.
|
| DontOverwriteIfNewer | 16 |
Don't overwrite the target if it already exists and its last write time is newer.
Only for copy operation.
|
See Also