Session.MoveFile Method
Moves remote file to another remote directory and/or renames remote file.
Advertisement
Syntax
C#
public void MoveFile(string sourcePath, string targetPath)
VB.NET
Public Sub MoveFile(sourcePath As String, targetPath As String)
Parameters
Name | Description |
---|---|
string sourcePath | Full path to remote file to move/rename. |
string targetPath | Full path to new location and name1 to move/rename the file to. |
Exceptions
Exception | Condition |
---|---|
InvalidOperationException | Session is not opened. |
SessionLocalException | Error communicating with winscp.com . See the exception documentation for details. |
SessionRemoteException | Session has failed. Command has failed. See the exception documentation for details. |
TimeoutException | Timeout waiting for winscp.com to respond. |
Example
Real-Life Example
- Locking files while uploading / Upload to temporary file name;
- Advanced files rename on SFTP/FTP server.
Advertisement
- The name must be included or the target page has to end with a slash.Back