SQL Eval Function Directory_Move
Directory_Move
moves a file or a directory and its contents to a new location.
Directory_Move @sourceDirName NVARCHAR (MAX), @destDirName NVARCHAR (MAX)
Parameters
- sourceDirName: The path of the file or directory to move.
- destDirName: The path to the new location for
sourceDirName
. IfsourceDirName
is a file, thendestDirName
must also be a file name.
Example
EXEC Directory_Move @sourceDirName = 'C:\source', @destDirName = 'C:\destination'