Skip to main content

Enum FileSystemTaskOperation

Namespace: Varigence.Languages.Biml.Task

Assembly: Biml.dll

C#


public enum FileSystemTaskOperation

Fields

FieldsDescription
CopyDirectorySpecifies 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.
CopyFileSpecifies 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.
CreateDirectorySpecifies that a new empty directory should be created in the target location.
DeleteDirectorySpecifies that an existing directory and its contents should be deleted from the target location.
DeleteDirectoryContentSpecifies that all files and subdirectories of a specified existing directory should be deleted.
DeleteFileSpecifies that an existing file should be deleted from the target location.
MoveDirectorySpecifies 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.
MoveFileSpecifies 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.
RenameFileSpecifies that the name of a specified existing file should be changed to a new value.
SetAttributesSpecifies that the file system attributes of a specified existing file should be changed to new values.