MoveFiles
MoveFiles
Moves one or more files to the folder specified. Wildcard characters (* and ?) may be used.
Properties
SourceDirectory
Type: System.String
Specifies, through the 'Browse for Folder' dialog, the folder to copy.
DestinationDirectory
Type: System.String
Specifies, through the 'Browse for Folder' dialog, the folder into which the files will be moved.
CreateDestinationDirectory
Type: System.Object
Specifies (True or False) whether to create the destination folder if it does not exist. This parameter does not apply to folders created through the 'Browse for Folder' dialog accessed from the 'Destination Folder' parameter. Defaults to True. You can also bind this parameter to a conditional.
OverwriteExistingFiles
Type: System.Object
Specifies (True or False) whether to overwrite any files at the destination if there are duplicate file names. Defaults to False. You can also bind this parameter to a conditional.
IncludeSubDirectories
Type: System.Object
Specifies (True or False) whether to include sub-folders in the search for files. Defaults to False. If you include sub-folders, any files matching your criteria that are found in sub-folders beneath the 'Source Folder' will be moved to the 'Destination Folder' location and placed in the same folder structure used under the 'Source Folder'. You can also bind this parameter to a conditional.
FileName
Type: System.String
Specifies the pattern to match on file names. Wildcard characters (* and ?) may be used. Use a colon (
to separate file names.
StopMoveOnException
Type: System.Object
Specifies (True or False) whether to stop moving files when any condition causes a file move to fail. Defaults to False. You can also bind this parameter to a conditional.
Int32Output
Type: System.Int32
Contains the number of files moved by this activity. This is a read-only output parameter.
Add Comment