Enum FileSystemTaskOperation
Namespace: Varigence.Languages.Biml.Task
Assembly: Biml.dll
C#
public enum FileSystemTaskOperation
Fields
| Fields | Description |
|---|---|
| CopyDirectory | Specifies that a directory should be copied from a source location to a target location. The directory and its contents will exist in both the source and the target when the file system task operation successfully completes. |
| CopyFile | Specifies that a file should be copied from a source location to a target location. The file will exist in both the source and the target when the file system task operation successfully completes. |
| CreateDirectory | Specifies that a new empty directory should be created in the target location. |
| DeleteDirectory | Specifies that an existing directory and its contents should be deleted from the target location. |
| DeleteDirectoryContent | Specifies that all files and subdirectories of a specified existing directory should be deleted. |
| DeleteFile | Specifies that an existing file should be deleted from the target location. |
| MoveDirectory | Specifies that a directory should be moved from a source location to a target location. The directory and its contents will exist only in the target location when the file system task operation successfully completes. |
| MoveFile | Specifies that a file should be moved from a source location to a target location. The file will exist only in the target location when the file system task operation successfully completes. |
| RenameFile | Specifies that the name of a specified existing file should be changed to a new value. |
| SetAttributes | Specifies that the file system attributes of a specified existing file should be changed to new values. |