Interface ISftpClient
Implementation of the SSH File Transfer Protocol (SFTP) over SSH.
public interface ISftpClient : IBaseClient, IDisposable
- Inherited Members
Properties
BufferSize
Gets or sets the maximum size of the buffer in bytes.
uint BufferSize { get; set; }
Property Value
- uint
The size of the buffer. The default buffer size is 32768 bytes (32 KB).
Remarks
For write operations, this limits the size of the payload for individual SSH_FXP_WRITE messages. The actual size is always capped at the maximum packet size supported by the peer (minus the size of protocol fields).
For read operations, this controls the size of the payload which is requested from the peer in a SSH_FXP_READ message. The peer will send the requested number of bytes in a SSH_FXP_DATA message, possibly split over multiple SSH_MSG_CHANNEL_DATA messages.
To optimize the size of the SSH packets sent by the peer, the actual requested size will take into account the size of the SSH_FXP_DATA protocol fields.
The size of the each individual SSH_FXP_DATA message is limited to the
local maximum packet size of the channel, which is set to 64 KB
for SSH.NET. However, the peer can limit this even further.
Exceptions
- ObjectDisposedException
The method was called after the client was disposed.
OperationTimeout
Gets or sets the operation timeout.
TimeSpan OperationTimeout { get; set; }
Property Value
- TimeSpan
The timeout to wait until an operation completes. The default value is negative one (-1) milliseconds, which indicates an infinite timeout period.
Exceptions
- ObjectDisposedException
The method was called after the client was disposed.
- ArgumentOutOfRangeException
valuerepresents a value that is less than -1 or greater than MaxValue milliseconds.
ProtocolVersion
Gets sftp protocol version.
int ProtocolVersion { get; }
Property Value
Exceptions
- SshConnectionException
Client is not connected.
- ObjectDisposedException
The method was called after the client was disposed.
WorkingDirectory
Gets remote working directory.
string WorkingDirectory { get; }
Property Value
Exceptions
- SshConnectionException
Client is not connected.
- ObjectDisposedException
The method was called after the client was disposed.
Methods
AppendAllLines(string, IEnumerable<string>)
Appends lines to a file, creating the file if it does not already exist.
void AppendAllLines(string path, IEnumerable<string> contents)
Parameters
pathstringThe file to append the lines to. The file is created if it does not already exist.
contentsIEnumerable<string>The lines to append to the file.
Remarks
The characters are written to the file using UTF-8 encoding without a Byte-Order Mark (BOM).
Exceptions
- ArgumentNullException
pathis null.-or-
contentsis null.- SshConnectionException
Client is not connected.
- SftpPathNotFoundException
The specified path is invalid, or its directory was not found on the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
AppendAllLines(string, IEnumerable<string>, Encoding)
Appends lines to a file by using a specified encoding, creating the file if it does not already exist.
void AppendAllLines(string path, IEnumerable<string> contents, Encoding encoding)
Parameters
pathstringThe file to append the lines to. The file is created if it does not already exist.
contentsIEnumerable<string>The lines to append to the file.
encodingEncodingThe character encoding to use.
Exceptions
- ArgumentNullException
pathis null.-or-
contentsis null.-or-
encodingis null.- SshConnectionException
Client is not connected.
- SftpPathNotFoundException
The specified path is invalid, or its directory was not found on the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
AppendAllText(string, string)
Appends the specified string to the file, creating the file if it does not already exist.
void AppendAllText(string path, string contents)
Parameters
pathstringThe file to append the specified string to.
contentsstringThe string to append to the file.
Remarks
The characters are written to the file using UTF-8 encoding without a Byte-Order Mark (BOM).
Exceptions
- ArgumentNullException
pathis null.-or-
contentsis null.- SshConnectionException
Client is not connected.
- SftpPathNotFoundException
The specified path is invalid, or its directory was not found on the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
AppendAllText(string, string, Encoding)
Appends the specified string to the file, creating the file if it does not already exist.
void AppendAllText(string path, string contents, Encoding encoding)
Parameters
pathstringThe file to append the specified string to.
contentsstringThe string to append to the file.
encodingEncodingThe character encoding to use.
Exceptions
- ArgumentNullException
pathis null.-or-
contentsis null.-or-
encodingis null.- SshConnectionException
Client is not connected.
- SftpPathNotFoundException
The specified path is invalid, or its directory was not found on the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
AppendText(string)
Creates a StreamWriter that appends UTF-8 encoded text to the specified file, creating the file if it does not already exist.
StreamWriter AppendText(string path)
Parameters
pathstringThe path to the file to append to.
Returns
- StreamWriter
A StreamWriter that appends text to a file using UTF-8 encoding without a Byte-Order Mark (BOM).
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- SftpPathNotFoundException
The specified path is invalid, or its directory was not found on the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
AppendText(string, Encoding)
Creates a StreamWriter that appends text to a file using the specified encoding, creating the file if it does not already exist.
StreamWriter AppendText(string path, Encoding encoding)
Parameters
Returns
- StreamWriter
A StreamWriter that appends text to a file using the specified encoding.
Exceptions
- ArgumentNullException
pathis null.-or-
encodingis null.- SshConnectionException
Client is not connected.
- SftpPathNotFoundException
The specified path is invalid, or its directory was not found on the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
BeginDownloadFile(string, Stream)
Begins an asynchronous file downloading into the stream.
IAsyncResult BeginDownloadFile(string path, Stream output)
Parameters
Returns
- IAsyncResult
An IAsyncResult that references the asynchronous operation.
Remarks
Method calls made by this method to output, may under certain conditions result in exceptions thrown by the stream.
Exceptions
- ArgumentNullException
outputis null.- ArgumentException
pathis null or contains only whitespace characters.- SshConnectionException
Client is not connected.
- SftpPermissionDeniedException
Permission to perform the operation was denied by the remote host.
-or-
A SSH command was denied by the server.- SshException
A SSH error where Message is the message from the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
BeginDownloadFile(string, Stream, AsyncCallback?)
Begins an asynchronous file downloading into the stream.
IAsyncResult BeginDownloadFile(string path, Stream output, AsyncCallback? asyncCallback)
Parameters
pathstringThe path.
outputStreamThe output.
asyncCallbackAsyncCallbackThe method to be called when the asynchronous write operation is completed.
Returns
- IAsyncResult
An IAsyncResult that references the asynchronous operation.
Remarks
Method calls made by this method to output, may under certain conditions result in exceptions thrown by the stream.
Exceptions
- ArgumentNullException
outputis null.- ArgumentException
pathis null or contains only whitespace characters.- SshConnectionException
Client is not connected.
- SftpPermissionDeniedException
Permission to perform the operation was denied by the remote host.
-or-
A SSH command was denied by the server.- SshException
A SSH error where Message is the message from the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
BeginDownloadFile(string, Stream, AsyncCallback?, object?, Action<ulong>?)
Begins an asynchronous file downloading into the stream.
IAsyncResult BeginDownloadFile(string path, Stream output, AsyncCallback? asyncCallback, object? state, Action<ulong>? downloadCallback = null)
Parameters
pathstringThe path.
outputStreamThe output.
asyncCallbackAsyncCallbackThe method to be called when the asynchronous write operation is completed.
stateobjectA user-provided object that distinguishes this particular asynchronous write request from other requests.
downloadCallbackAction<ulong>The download callback.
Returns
- IAsyncResult
An IAsyncResult that references the asynchronous operation.
Remarks
Method calls made by this method to output, may under certain conditions result in exceptions thrown by the stream.
Exceptions
- ArgumentNullException
outputis null.- ArgumentException
pathis null or contains only whitespace characters.- ObjectDisposedException
The method was called after the client was disposed.
BeginListDirectory(string, AsyncCallback?, object?, Action<int>?)
Begins an asynchronous operation of retrieving list of files in remote directory.
IAsyncResult BeginListDirectory(string path, AsyncCallback? asyncCallback, object? state, Action<int>? listCallback = null)
Parameters
pathstringThe path.
asyncCallbackAsyncCallbackThe method to be called when the asynchronous write operation is completed.
stateobjectA user-provided object that distinguishes this particular asynchronous write request from other requests.
listCallbackAction<int>The list callback.
Returns
- IAsyncResult
An IAsyncResult that references the asynchronous operation.
Exceptions
- ObjectDisposedException
The method was called after the client was disposed.
BeginSynchronizeDirectories(string, string, string, AsyncCallback?, object?)
Begins the synchronize directories.
IAsyncResult BeginSynchronizeDirectories(string sourcePath, string destinationPath, string searchPattern, AsyncCallback? asyncCallback, object? state)
Parameters
sourcePathstringThe source path.
destinationPathstringThe destination path.
searchPatternstringThe search pattern.
asyncCallbackAsyncCallbackThe async callback.
stateobjectThe state.
Returns
- IAsyncResult
An IAsyncResult that represents the asynchronous directory synchronization.
Exceptions
- ArgumentNullException
sourcePathis null.- ArgumentException
destinationPathis null or contains only whitespace.- SshException
If a problem occurs while copying the file.
BeginUploadFile(Stream, string)
Begins an asynchronous uploading the stream into remote file.
IAsyncResult BeginUploadFile(Stream input, string path)
Parameters
Returns
- IAsyncResult
An IAsyncResult that references the asynchronous operation.
Remarks
Method calls made by this method to input, may under certain conditions result in exceptions thrown by the stream.
If the remote file already exists, it is overwritten and truncated.
Exceptions
- ArgumentNullException
inputis null.- ArgumentException
pathis null or contains only whitespace characters.- SshConnectionException
Client is not connected.
- SftpPermissionDeniedException
Permission to list the contents of the directory was denied by the remote host.
-or-
A SSH command was denied by the server.- SshException
A SSH error where Message is the message from the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
BeginUploadFile(Stream, string, AsyncCallback?)
Begins an asynchronous uploading the stream into remote file.
IAsyncResult BeginUploadFile(Stream input, string path, AsyncCallback? asyncCallback)
Parameters
inputStreamData input stream.
pathstringRemote file path.
asyncCallbackAsyncCallbackThe method to be called when the asynchronous write operation is completed.
Returns
- IAsyncResult
An IAsyncResult that references the asynchronous operation.
Remarks
Method calls made by this method to input, may under certain conditions result in exceptions thrown by the stream.
If the remote file already exists, it is overwritten and truncated.
Exceptions
- ArgumentNullException
inputis null.- ArgumentException
pathis null or contains only whitespace characters.- SshConnectionException
Client is not connected.
- SftpPermissionDeniedException
Permission to list the contents of the directory was denied by the remote host.
-or-
A SSH command was denied by the server.- SshException
A SSH error where Message is the message from the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
BeginUploadFile(Stream, string, AsyncCallback?, object?, Action<ulong>?)
Begins an asynchronous uploading the stream into remote file.
IAsyncResult BeginUploadFile(Stream input, string path, AsyncCallback? asyncCallback, object? state, Action<ulong>? uploadCallback = null)
Parameters
inputStreamData input stream.
pathstringRemote file path.
asyncCallbackAsyncCallbackThe method to be called when the asynchronous write operation is completed.
stateobjectA user-provided object that distinguishes this particular asynchronous write request from other requests.
uploadCallbackAction<ulong>The upload callback.
Returns
- IAsyncResult
An IAsyncResult that references the asynchronous operation.
Remarks
Method calls made by this method to input, may under certain conditions result in exceptions thrown by the stream.
If the remote file already exists, it is overwritten and truncated.
Exceptions
- ArgumentNullException
inputis null.- ArgumentException
pathis null or contains only whitespace characters.- SshConnectionException
Client is not connected.
- SftpPermissionDeniedException
Permission to list the contents of the directory was denied by the remote host.
-or-
A SSH command was denied by the server.- SshException
A SSH error where Message is the message from the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
BeginUploadFile(Stream, string, bool, AsyncCallback?, object?, Action<ulong>?)
Begins an asynchronous uploading the stream into remote file.
IAsyncResult BeginUploadFile(Stream input, string path, bool canOverride, AsyncCallback? asyncCallback, object? state, Action<ulong>? uploadCallback = null)
Parameters
inputStreamData input stream.
pathstringRemote file path.
canOverrideboolSpecified whether an existing file can be overwritten.
asyncCallbackAsyncCallbackThe method to be called when the asynchronous write operation is completed.
stateobjectA user-provided object that distinguishes this particular asynchronous write request from other requests.
uploadCallbackAction<ulong>The upload callback.
Returns
- IAsyncResult
An IAsyncResult that references the asynchronous operation.
Remarks
Method calls made by this method to input, may under certain conditions result in exceptions thrown by the stream.
When path refers to an existing file, set canOverride to true to overwrite and truncate that file.
If canOverride is false, the upload will fail and EndUploadFile(IAsyncResult) will throw an
SshException.
Exceptions
- ArgumentNullException
inputis null.- ArgumentException
pathis null or contains only whitespace characters.- ObjectDisposedException
The method was called after the client was disposed.
ChangeDirectory(string)
Changes remote directory to path.
void ChangeDirectory(string path)
Parameters
pathstringNew directory path.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- SftpPermissionDeniedException
Permission to change directory denied by remote host.
-or-
A SSH command was denied by the server.- SftpPathNotFoundException
pathwas not found on the remote host.- SshException
A SSH error where Message is the message from the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
ChangePermissions(string, short)
Changes permissions of file(s) to specified mode.
void ChangePermissions(string path, short mode)
Parameters
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- SftpPermissionDeniedException
Permission to change permission on the path(s) was denied by the remote host.
-or-
A SSH command was denied by the server.- SftpPathNotFoundException
pathwas not found on the remote host.- SshException
A SSH error where Message is the message from the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
Create(string)
Creates or overwrites a file in the specified path.
SftpFileStream Create(string path)
Parameters
pathstringThe path and name of the file to create.
Returns
- SftpFileStream
A SftpFileStream that provides read/write access to the file specified in path.
Remarks
If the target file already exists, it is first truncated to zero bytes.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- SftpPathNotFoundException
The specified path is invalid, or its directory was not found on the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
Create(string, int)
Creates or overwrites the specified file.
SftpFileStream Create(string path, int bufferSize)
Parameters
pathstringThe path and name of the file to create.
bufferSizeintThe maximum number of bytes buffered for reads and writes to the file.
Returns
- SftpFileStream
A SftpFileStream that provides read/write access to the file specified in path.
Remarks
If the target file already exists, it is first truncated to zero bytes.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- SftpPathNotFoundException
The specified path is invalid, or its directory was not found on the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
CreateDirectory(string)
Creates remote directory specified by path.
void CreateDirectory(string path)
Parameters
pathstringDirectory path to create.
Exceptions
- ArgumentException
pathis null or contains only whitespace characters.- SshConnectionException
Client is not connected.
- SftpPermissionDeniedException
Permission to create the directory was denied by the remote host.
-or-
A SSH command was denied by the server.- SshException
A SSH error where Message is the message from the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
CreateText(string)
Creates or opens a file for writing UTF-8 encoded text.
StreamWriter CreateText(string path)
Parameters
pathstringThe file to be opened for writing.
Returns
- StreamWriter
A StreamWriter that writes text to a file using UTF-8 encoding without a Byte-Order Mark (BOM).
Remarks
If the target file already exists, it is overwritten. It is not first truncated to zero bytes.
If the target file does not exist, it is created.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- SftpPathNotFoundException
The specified path is invalid, or its directory was not found on the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
CreateText(string, Encoding)
Creates or opens a file for writing text using the specified encoding.
StreamWriter CreateText(string path, Encoding encoding)
Parameters
Returns
- StreamWriter
A StreamWriter that writes to a file using the specified encoding.
Remarks
If the target file already exists, it is overwritten. It is not first truncated to zero bytes.
If the target file does not exist, it is created.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- SftpPathNotFoundException
The specified path is invalid, or its directory was not found on the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
Delete(string)
Deletes the specified file or directory.
void Delete(string path)
Parameters
pathstringThe name of the file or directory to be deleted. Wildcard characters are not supported.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- SftpPathNotFoundException
pathwas not found on the remote host.- ObjectDisposedException
The method was called after the client was disposed.
DeleteDirectory(string)
Deletes remote directory specified by path.
void DeleteDirectory(string path)
Parameters
pathstringDirectory to be deleted path.
Exceptions
- ArgumentException
pathis null or contains only whitespace characters.- SshConnectionException
Client is not connected.
- SftpPathNotFoundException
pathwas not found on the remote host.- SftpPermissionDeniedException
Permission to delete the directory was denied by the remote host.
-or-
A SSH command was denied by the server.- SshException
A SSH error where Message is the message from the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
DeleteFile(string)
Deletes remote file specified by path.
void DeleteFile(string path)
Parameters
pathstringFile to be deleted path.
Exceptions
- ArgumentException
pathis null or contains only whitespace characters.- SshConnectionException
Client is not connected.
- SftpPathNotFoundException
pathwas not found on the remote host.- SftpPermissionDeniedException
Permission to delete the file was denied by the remote host.
-or-
A SSH command was denied by the server.- SshException
A SSH error where Message is the message from the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
DeleteFileAsync(string, CancellationToken)
Asynchronously deletes remote file specified by path.
Task DeleteFileAsync(string path, CancellationToken cancellationToken)
Parameters
pathstringFile to be deleted path.
cancellationTokenCancellationTokenThe CancellationToken to observe.
Returns
Exceptions
- ArgumentException
pathis null or contains only whitespace characters.- SshConnectionException
Client is not connected.
- SftpPathNotFoundException
pathwas not found on the remote host.- SftpPermissionDeniedException
Permission to delete the file was denied by the remote host.
-or-
A SSH command was denied by the server.- SshException
A SSH error where Message is the message from the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
DownloadFile(string, Stream, Action<ulong>?)
Downloads remote file specified by the path into the stream.
void DownloadFile(string path, Stream output, Action<ulong>? downloadCallback = null)
Parameters
pathstringFile to download.
outputStreamStream to write the file into.
downloadCallbackAction<ulong>The download callback.
Remarks
Method calls made by this method to output, may under certain conditions result in exceptions thrown by the stream.
Exceptions
- ArgumentNullException
outputis null.- ArgumentException
pathis null or contains only whitespace characters.- SshConnectionException
Client is not connected.
- SftpPermissionDeniedException
Permission to perform the operation was denied by the remote host.
-or-
A SSH command was denied by the server.- SftpPathNotFoundException
pathwas not found on the remote host.- SshException
A SSH error where Message is the message from the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
EndDownloadFile(IAsyncResult)
Ends an asynchronous file downloading into the stream.
void EndDownloadFile(IAsyncResult asyncResult)
Parameters
asyncResultIAsyncResultThe pending asynchronous SFTP request.
Exceptions
- ArgumentException
The IAsyncResult object did not come from the corresponding async method on this type.
-or-
EndDownloadFile(IAsyncResult) was called multiple times with the same IAsyncResult.- SshConnectionException
Client is not connected.
- SftpPermissionDeniedException
Permission to perform the operation was denied by the remote host.
-or-
A SSH command was denied by the server.- SftpPathNotFoundException
The path was not found on the remote host.
- SshException
A SSH error where Message is the message from the remote host.
EndListDirectory(IAsyncResult)
Ends an asynchronous operation of retrieving list of files in remote directory.
IEnumerable<ISftpFile> EndListDirectory(IAsyncResult asyncResult)
Parameters
asyncResultIAsyncResultThe pending asynchronous SFTP request.
Returns
- IEnumerable<ISftpFile>
A list of files.
Exceptions
- ArgumentException
The IAsyncResult object did not come from the corresponding async method on this type.
-or-
EndListDirectory(IAsyncResult) was called multiple times with the same IAsyncResult.
EndSynchronizeDirectories(IAsyncResult)
Ends the synchronize directories.
IEnumerable<FileInfo> EndSynchronizeDirectories(IAsyncResult asyncResult)
Parameters
asyncResultIAsyncResultThe async result.
Returns
- IEnumerable<FileInfo>
A list of uploaded files.
Exceptions
- ArgumentException
The IAsyncResult object did not come from the corresponding async method on this type.
-or-
EndSynchronizeDirectories(IAsyncResult) was called multiple times with the same IAsyncResult.- SftpPathNotFoundException
The destination path was not found on the remote host.
EndUploadFile(IAsyncResult)
Ends an asynchronous uploading the stream into remote file.
void EndUploadFile(IAsyncResult asyncResult)
Parameters
asyncResultIAsyncResultThe pending asynchronous SFTP request.
Exceptions
- ArgumentException
The IAsyncResult object did not come from the corresponding async method on this type.
-or-
EndUploadFile(IAsyncResult) was called multiple times with the same IAsyncResult.- SshConnectionException
Client is not connected.
- SftpPathNotFoundException
The directory of the file was not found on the remote host.
- SftpPermissionDeniedException
Permission to upload the file was denied by the remote host.
-or-
A SSH command was denied by the server.- SshException
A SSH error where Message is the message from the remote host.
Exists(string)
Checks whether file or directory exists.
bool Exists(string path)
Parameters
pathstringThe path.
Returns
Exceptions
- ArgumentException
pathis null or contains only whitespace characters.- SshConnectionException
Client is not connected.
- SftpPermissionDeniedException
Permission to perform the operation was denied by the remote host.
-or-
A SSH command was denied by the server.- SshException
A SSH error where Message is the message from the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
Get(string)
Gets reference to remote file or directory.
ISftpFile Get(string path)
Parameters
pathstringThe path.
Returns
Exceptions
- SshConnectionException
Client is not connected.
- SftpPathNotFoundException
pathwas not found on the remote host.- ArgumentNullException
pathis null.- ObjectDisposedException
The method was called after the client was disposed.
GetAttributes(string)
Gets the SftpFileAttributes of the file on the path.
SftpFileAttributes GetAttributes(string path)
Parameters
pathstringThe path to the file.
Returns
- SftpFileAttributes
The SftpFileAttributes of the file on the path.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- SftpPathNotFoundException
pathwas not found on the remote host.- ObjectDisposedException
The method was called after the client was disposed.
GetLastAccessTime(string)
Returns the date and time the specified file or directory was last accessed.
DateTime GetLastAccessTime(string path)
Parameters
pathstringThe file or directory for which to obtain access date and time information.
Returns
- DateTime
A DateTime structure set to the date and time that the specified file or directory was last accessed. This value is expressed in local time.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- ObjectDisposedException
The method was called after the client was disposed.
GetLastAccessTimeUtc(string)
Returns the date and time, in coordinated universal time (UTC), that the specified file or directory was last accessed.
DateTime GetLastAccessTimeUtc(string path)
Parameters
pathstringThe file or directory for which to obtain access date and time information.
Returns
- DateTime
A DateTime structure set to the date and time that the specified file or directory was last accessed. This value is expressed in UTC time.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- ObjectDisposedException
The method was called after the client was disposed.
GetLastWriteTime(string)
Returns the date and time the specified file or directory was last written to.
DateTime GetLastWriteTime(string path)
Parameters
pathstringThe file or directory for which to obtain write date and time information.
Returns
- DateTime
A DateTime structure set to the date and time that the specified file or directory was last written to. This value is expressed in local time.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- ObjectDisposedException
The method was called after the client was disposed.
GetLastWriteTimeUtc(string)
Returns the date and time, in coordinated universal time (UTC), that the specified file or directory was last written to.
DateTime GetLastWriteTimeUtc(string path)
Parameters
pathstringThe file or directory for which to obtain write date and time information.
Returns
- DateTime
A DateTime structure set to the date and time that the specified file or directory was last written to. This value is expressed in UTC time.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- ObjectDisposedException
The method was called after the client was disposed.
GetStatus(string)
Gets status using statvfs@openssh.com request.
SftpFileSystemInformation GetStatus(string path)
Parameters
pathstringThe path.
Returns
- SftpFileSystemInformation
A SftpFileSystemInformation instance that contains file status information.
Exceptions
- SshConnectionException
Client is not connected.
- ArgumentNullException
pathis null.- ObjectDisposedException
The method was called after the client was disposed.
GetStatusAsync(string, CancellationToken)
Asynchronously gets status using statvfs@openssh.com request.
Task<SftpFileSystemInformation> GetStatusAsync(string path, CancellationToken cancellationToken)
Parameters
pathstringThe path.
cancellationTokenCancellationTokenThe CancellationToken to observe.
Returns
- Task<SftpFileSystemInformation>
A Task<TResult> that represents the status operation. The task result contains the SftpFileSystemInformation instance that contains file status information.
Exceptions
- SshConnectionException
Client is not connected.
- ArgumentNullException
pathis null.- ObjectDisposedException
The method was called after the client was disposed.
ListDirectory(string, Action<int>?)
Retrieves list of files in remote directory.
IEnumerable<ISftpFile> ListDirectory(string path, Action<int>? listCallback = null)
Parameters
Returns
- IEnumerable<ISftpFile>
A list of files.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- SftpPermissionDeniedException
Permission to list the contents of the directory was denied by the remote host.
-or-
A SSH command was denied by the server.- SshException
A SSH error where Message is the message from the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
ListDirectoryAsync(string, CancellationToken)
Asynchronously enumerates the files in remote directory.
IAsyncEnumerable<ISftpFile> ListDirectoryAsync(string path, CancellationToken cancellationToken)
Parameters
pathstringThe path.
cancellationTokenCancellationTokenThe CancellationToken to observe.
Returns
- IAsyncEnumerable<ISftpFile>
An IAsyncEnumerable<T> of ISftpFile that represents the asynchronous enumeration operation. The enumeration contains an async stream of ISftpFile for the files in the directory specified by
path.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- SftpPermissionDeniedException
Permission to list the contents of the directory was denied by the remote host.
-or-
A SSH command was denied by the server.- SshException
A SSH error where Message is the message from the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
Open(string, FileMode)
Opens a SftpFileStream on the specified path with read/write access.
SftpFileStream Open(string path, FileMode mode)
Parameters
pathstringThe file to open.
modeFileModeA FileMode value that specifies whether a file is created if one does not exist, and determines whether the contents of existing files are retained or overwritten.
Returns
- SftpFileStream
An unshared SftpFileStream that provides access to the specified file, with the specified mode and read/write access.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- ObjectDisposedException
The method was called after the client was disposed.
Open(string, FileMode, FileAccess)
Opens a SftpFileStream on the specified path, with the specified mode and access.
SftpFileStream Open(string path, FileMode mode, FileAccess access)
Parameters
pathstringThe file to open.
modeFileModeA FileMode value that specifies whether a file is created if one does not exist, and determines whether the contents of existing files are retained or overwritten.
accessFileAccessA FileAccess value that specifies the operations that can be performed on the file.
Returns
- SftpFileStream
An unshared SftpFileStream that provides access to the specified file, with the specified mode and access.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- ObjectDisposedException
The method was called after the client was disposed.
OpenAsync(string, FileMode, FileAccess, CancellationToken)
Asynchronously opens a SftpFileStream on the specified path, with the specified mode and access.
Task<SftpFileStream> OpenAsync(string path, FileMode mode, FileAccess access, CancellationToken cancellationToken)
Parameters
pathstringThe file to open.
modeFileModeA FileMode value that specifies whether a file is created if one does not exist, and determines whether the contents of existing files are retained or overwritten.
accessFileAccessA FileAccess value that specifies the operations that can be performed on the file.
cancellationTokenCancellationTokenThe CancellationToken to observe.
Returns
- Task<SftpFileStream>
A Task<TResult> that represents the asynchronous open operation. The task result contains the SftpFileStream that provides access to the specified file, with the specified mode and access.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- ObjectDisposedException
The method was called after the client was disposed.
OpenRead(string)
Opens an existing file for reading.
SftpFileStream OpenRead(string path)
Parameters
pathstringThe file to be opened for reading.
Returns
- SftpFileStream
A read-only SftpFileStream on the specified path.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- ObjectDisposedException
The method was called after the client was disposed.
OpenText(string)
Opens an existing UTF-8 encoded text file for reading.
StreamReader OpenText(string path)
Parameters
pathstringThe file to be opened for reading.
Returns
- StreamReader
A StreamReader on the specified path.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- ObjectDisposedException
The method was called after the client was disposed.
OpenWrite(string)
Opens a file for writing.
SftpFileStream OpenWrite(string path)
Parameters
pathstringThe file to be opened for writing.
Returns
- SftpFileStream
An unshared SftpFileStream object on the specified path with Write access.
Remarks
If the file does not exist, it is created.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- ObjectDisposedException
The method was called after the client was disposed.
ReadAllBytes(string)
Opens a binary file, reads the contents of the file into a byte array, and closes the file.
byte[] ReadAllBytes(string path)
Parameters
pathstringThe file to open for reading.
Returns
- byte[]
A byte array containing the contents of the file.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- ObjectDisposedException
The method was called after the client was disposed.
ReadAllLines(string)
Opens a text file, reads all lines of the file using UTF-8 encoding, and closes the file.
string[] ReadAllLines(string path)
Parameters
pathstringThe file to open for reading.
Returns
- string[]
A string array containing all lines of the file.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- ObjectDisposedException
The method was called after the client was disposed.
ReadAllLines(string, Encoding)
Opens a file, reads all lines of the file with the specified encoding, and closes the file.
string[] ReadAllLines(string path, Encoding encoding)
Parameters
pathstringThe file to open for reading.
encodingEncodingThe encoding applied to the contents of the file.
Returns
- string[]
A string array containing all lines of the file.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- ObjectDisposedException
The method was called after the client was disposed.
ReadAllText(string)
Opens a text file, reads all lines of the file with the UTF-8 encoding, and closes the file.
string ReadAllText(string path)
Parameters
pathstringThe file to open for reading.
Returns
- string
A string containing all lines of the file.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- ObjectDisposedException
The method was called after the client was disposed.
ReadAllText(string, Encoding)
Opens a file, reads all lines of the file with the specified encoding, and closes the file.
string ReadAllText(string path, Encoding encoding)
Parameters
pathstringThe file to open for reading.
encodingEncodingThe encoding applied to the contents of the file.
Returns
- string
A string containing all lines of the file.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- ObjectDisposedException
The method was called after the client was disposed.
ReadLines(string)
Reads the lines of a file with the UTF-8 encoding.
IEnumerable<string> ReadLines(string path)
Parameters
pathstringThe file to read.
Returns
- IEnumerable<string>
The lines of the file.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- ObjectDisposedException
The method was called after the client was disposed.
ReadLines(string, Encoding)
Read the lines of a file that has a specified encoding.
IEnumerable<string> ReadLines(string path, Encoding encoding)
Parameters
pathstringThe file to read.
encodingEncodingThe encoding that is applied to the contents of the file.
Returns
- IEnumerable<string>
The lines of the file.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- ObjectDisposedException
The method was called after the client was disposed.
RenameFile(string, string)
Renames remote file from old path to new path.
void RenameFile(string oldPath, string newPath)
Parameters
Exceptions
- ArgumentNullException
oldPathis null.-or-
ornewPathis null.- SshConnectionException
Client is not connected.
- SftpPermissionDeniedException
Permission to rename the file was denied by the remote host.
-or-
A SSH command was denied by the server.- SshException
A SSH error where Message is the message from the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
RenameFile(string, string, bool)
Renames remote file from old path to new path.
void RenameFile(string oldPath, string newPath, bool isPosix)
Parameters
oldPathstringPath to the old file location.
newPathstringPath to the new file location.
isPosixboolif set to true then perform a posix rename.
Exceptions
- ArgumentNullException
oldPathis null.-or-
ornewPathis null.- SshConnectionException
Client is not connected.
- SftpPermissionDeniedException
Permission to rename the file was denied by the remote host.
-or-
A SSH command was denied by the server.- SshException
A SSH error where Message is the message from the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
RenameFileAsync(string, string, CancellationToken)
Asynchronously renames remote file from old path to new path.
Task RenameFileAsync(string oldPath, string newPath, CancellationToken cancellationToken)
Parameters
oldPathstringPath to the old file location.
newPathstringPath to the new file location.
cancellationTokenCancellationTokenThe CancellationToken to observe.
Returns
Exceptions
- ArgumentNullException
oldPathis null.-or-
ornewPathis null.- SshConnectionException
Client is not connected.
- SftpPermissionDeniedException
Permission to rename the file was denied by the remote host.
-or-
A SSH command was denied by the server.- SshException
A SSH error where Message is the message from the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
SetAttributes(string, SftpFileAttributes)
Sets the specified SftpFileAttributes of the file on the specified path.
void SetAttributes(string path, SftpFileAttributes fileAttributes)
Parameters
pathstringThe path to the file.
fileAttributesSftpFileAttributesThe desired SftpFileAttributes.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- ObjectDisposedException
The method was called after the client was disposed.
SetLastAccessTime(string, DateTime)
Sets the date and time the specified file was last accessed.
void SetLastAccessTime(string path, DateTime lastAccessTime)
Parameters
pathstringThe file for which to set the access date and time information.
lastAccessTimeDateTimeA DateTime containing the value to set for the last access date and time of path. This value is expressed in local time.
SetLastAccessTimeUtc(string, DateTime)
Sets the date and time, in coordinated universal time (UTC), that the specified file was last accessed.
void SetLastAccessTimeUtc(string path, DateTime lastAccessTimeUtc)
Parameters
pathstringThe file for which to set the access date and time information.
lastAccessTimeUtcDateTimeA DateTime containing the value to set for the last access date and time of path. This value is expressed in UTC time.
SetLastWriteTime(string, DateTime)
Sets the date and time that the specified file was last written to.
void SetLastWriteTime(string path, DateTime lastWriteTime)
Parameters
pathstringThe file for which to set the date and time information.
lastWriteTimeDateTimeA DateTime containing the value to set for the last write date and time of path. This value is expressed in local time.
SetLastWriteTimeUtc(string, DateTime)
Sets the date and time, in coordinated universal time (UTC), that the specified file was last written to.
void SetLastWriteTimeUtc(string path, DateTime lastWriteTimeUtc)
Parameters
pathstringThe file for which to set the date and time information.
lastWriteTimeUtcDateTimeA DateTime containing the value to set for the last write date and time of path. This value is expressed in UTC time.
SymbolicLink(string, string)
Creates a symbolic link from old path to new path.
void SymbolicLink(string path, string linkPath)
Parameters
Exceptions
- ArgumentException
pathis null.-or-
linkPathis null or contains only whitespace characters.- SshConnectionException
Client is not connected.
- SftpPermissionDeniedException
Permission to create the symbolic link was denied by the remote host.
-or-
A SSH command was denied by the server.- SshException
A SSH error where Message is the message from the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
SynchronizeDirectories(string, string, string)
Synchronizes the directories.
IEnumerable<FileInfo> SynchronizeDirectories(string sourcePath, string destinationPath, string searchPattern)
Parameters
sourcePathstringThe source path.
destinationPathstringThe destination path.
searchPatternstringThe search pattern.
Returns
- IEnumerable<FileInfo>
A list of uploaded files.
Exceptions
- ArgumentNullException
sourcePathis null.- ArgumentException
destinationPathis null or contains only whitespace.- SftpPathNotFoundException
destinationPathwas not found on the remote host.- SshException
If a problem occurs while copying the file.
UploadFile(Stream, string, Action<ulong>?)
Uploads stream into remote file.
void UploadFile(Stream input, string path, Action<ulong>? uploadCallback = null)
Parameters
inputStreamData input stream.
pathstringRemote file path.
uploadCallbackAction<ulong>The upload callback.
Remarks
Method calls made by this method to input, may under certain conditions result in exceptions thrown by the stream.
Exceptions
- ArgumentNullException
inputis null.- ArgumentException
pathis null or contains only whitespace characters.- SshConnectionException
Client is not connected.
- SftpPermissionDeniedException
Permission to upload the file was denied by the remote host.
-or-
A SSH command was denied by the server.- SshException
A SSH error where Message is the message from the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
UploadFile(Stream, string, bool, Action<ulong>?)
Uploads stream into remote file.
void UploadFile(Stream input, string path, bool canOverride, Action<ulong>? uploadCallback = null)
Parameters
inputStreamData input stream.
pathstringRemote file path.
canOverrideboolif set to true then existing file will be overwritten.
uploadCallbackAction<ulong>The upload callback.
Remarks
Method calls made by this method to input, may under certain conditions result in exceptions thrown by the stream.
Exceptions
- ArgumentNullException
inputis null.- ArgumentException
pathis null or contains only whitespace characters.- SshConnectionException
Client is not connected.
- SftpPermissionDeniedException
Permission to upload the file was denied by the remote host.
-or-
A SSH command was denied by the server.- SshException
A SSH error where Message is the message from the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
WriteAllBytes(string, byte[])
Writes the specified byte array to the specified file, and closes the file.
void WriteAllBytes(string path, byte[] bytes)
Parameters
Remarks
If the target file already exists, it is overwritten. It is not first truncated to zero bytes.
If the target file does not exist, it is created.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- SftpPathNotFoundException
The specified path is invalid, or its directory was not found on the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
WriteAllLines(string, IEnumerable<string>)
Writes a collection of strings to the file using the UTF-8 encoding, and closes the file.
void WriteAllLines(string path, IEnumerable<string> contents)
Parameters
pathstringThe file to write to.
contentsIEnumerable<string>The lines to write to the file.
Remarks
The characters are written to the file using UTF-8 encoding without a Byte-Order Mark (BOM).
If the target file already exists, it is overwritten. It is not first truncated to zero bytes.
If the target file does not exist, it is created.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- SftpPathNotFoundException
The specified path is invalid, or its directory was not found on the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
WriteAllLines(string, IEnumerable<string>, Encoding)
Writes a collection of strings to the file using the specified encoding, and closes the file.
void WriteAllLines(string path, IEnumerable<string> contents, Encoding encoding)
Parameters
pathstringThe file to write to.
contentsIEnumerable<string>The lines to write to the file.
encodingEncodingThe character encoding to use.
Remarks
If the target file already exists, it is overwritten. It is not first truncated to zero bytes.
If the target file does not exist, it is created.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- SftpPathNotFoundException
The specified path is invalid, or its directory was not found on the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
WriteAllLines(string, string[])
Write the specified string array to the file using the UTF-8 encoding, and closes the file.
void WriteAllLines(string path, string[] contents)
Parameters
Remarks
The characters are written to the file using UTF-8 encoding without a Byte-Order Mark (BOM).
If the target file already exists, it is overwritten. It is not first truncated to zero bytes.
If the target file does not exist, it is created.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- SftpPathNotFoundException
The specified path is invalid, or its directory was not found on the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
WriteAllLines(string, string[], Encoding)
Writes the specified string array to the file by using the specified encoding, and closes the file.
void WriteAllLines(string path, string[] contents, Encoding encoding)
Parameters
pathstringThe file to write to.
contentsstring[]The string array to write to the file.
encodingEncodingAn Encoding object that represents the character encoding applied to the string array.
Remarks
If the target file already exists, it is overwritten. It is not first truncated to zero bytes.
If the target file does not exist, it is created.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- SftpPathNotFoundException
The specified path is invalid, or its directory was not found on the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
WriteAllText(string, string)
Writes the specified string to the file using the UTF-8 encoding, and closes the file.
void WriteAllText(string path, string contents)
Parameters
Remarks
The characters are written to the file using UTF-8 encoding without a Byte-Order Mark (BOM).
If the target file already exists, it is overwritten. It is not first truncated to zero bytes.
If the target file does not exist, it is created.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- SftpPathNotFoundException
The specified path is invalid, or its directory was not found on the remote host.
- ObjectDisposedException
The method was called after the client was disposed.
WriteAllText(string, string, Encoding)
Writes the specified string to the file using the specified encoding, and closes the file.
void WriteAllText(string path, string contents, Encoding encoding)
Parameters
pathstringThe file to write to.
contentsstringThe string to write to the file.
encodingEncodingThe encoding to apply to the string.
Remarks
If the target file already exists, it is overwritten. It is not first truncated to zero bytes.
If the target file does not exist, it is created.
Exceptions
- ArgumentNullException
pathis null.- SshConnectionException
Client is not connected.
- SftpPathNotFoundException
The specified path is invalid, or its directory was not found on the remote host.
- ObjectDisposedException
The method was called after the client was disposed.