Interface SftpRemoteFile<T>
-
- All Known Implementing Classes:
SftpRemoteFileJCraft,SftpRemoteFileSingle
public interface SftpRemoteFile<T>A remote file when using SFTP.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetFileLength()The file sizeStringgetFilename()The file namelonggetLastModified()The file modification timestamp (in millis)StringgetLongname()The long file nameTgetRemoteFile()Gets the remote file object.booleanisDirectory()Whether its a directory
-
-
-
Method Detail
-
getRemoteFile
T getRemoteFile()
Gets the remote file object.
-
getFilename
String getFilename()
The file name
-
getLongname
String getLongname()
The long file name
-
isDirectory
boolean isDirectory()
Whether its a directory
-
getFileLength
long getFileLength()
The file size
-
getLastModified
long getLastModified()
The file modification timestamp (in millis)
-
-