TRANSFER_SOURCE_FLAGS Enumeration |
Namespace:
ShellBoost.Core.WindowsShell
Assembly:
ShellBoost.Core (in ShellBoost.Core.dll) Version: 1.8.3.0
Syntax [FlagsAttribute]
public enum TRANSFER_SOURCE_FLAGS
Members
| Member name | Value | Description |
---|
| TSF_NORMAL | 0 |
Fail if the destination already exists, unless TSF_OVERWRITE_EXIST is specified. This is a default behavior.
|
| TSF_FAIL_EXIST | 0 |
Fail if the destination already exists, unless TSF_OVERWRITE_EXIST is specified. This is a default behavior.
|
| TSF_RENAME_EXIST | 1 |
Rename with auto-name generation if the destination already exists.
|
| TSF_OVERWRITE_EXIST | 2 |
Overwrite or merge with the destination.
|
| TSF_ALLOW_DECRYPTION | 4 |
Allow creation of a decrypted destination.
|
| TSF_NO_SECURITY | 8 |
No discretionary access control list (DACL), system access control list (SACL), or owner.
|
| TSF_COPY_CREATION_TIME | 16 |
Copy the creation time as part of the copy. This can be useful for a move operation that is being used as a copy and delete operation (TSF_MOVE_AS_COPY_DELETE).
|
| TSF_COPY_WRITE_TIME | 32 |
Copy the last write time as part of the copy.
|
| TSF_USE_FULL_ACCESS | 64 |
Assign write, read, and delete permissions as share mode.
|
| TSF_DELETE_RECYCLE_IF_POSSIBLE | 128 |
Recycle on file delete, if possible.
|
| TSF_COPY_HARD_LINK | 256 |
Hard link to the desired source (not required). This avoids a normal copy operation.
|
| TSF_COPY_LOCALIZED_NAME | 512 |
Copy the localized name.
|
| TSF_MOVE_AS_COPY_DELETE | 1024 |
Move as a copy and delete operation.
|
| TSF_SUSPEND_SHELLEVENTS | 2048 |
Suspend Shell events.
|
See Also