 | FtpGetFileHash(String, FtpHashType) Method |
Returns the checksum of the specified remote file.
You can use
FileHash class to compute or validate local file checksum.
Namespace: Limilabs.FTP.ClientAssembly: Ftp (in Ftp.dll) Version: 2.0.26109.1248
Syntaxpublic byte[] GetFileHash(
string remotePath,
FtpHashType type
)
Public Function GetFileHash (
remotePath As String,
type As FtpHashType
) As Byte()
public:
array<unsigned char>^ GetFileHash(
String^ remotePath,
FtpHashType type
)
member GetFileHash :
remotePath : string *
type : FtpHashType -> byte[] Parameters
- remotePath String
- The path of the remote file.
- type FtpHashType
- Hash algorithm used.
Return Value
ByteChecksum of the specified remote file.
See Also