throws IOException {
SFTPv3DirectoryEntry entry = new SFTPv3DirectoryEntry();
SFTPv3Client sftpConn = null;
try {
sftpConn = new SFTPv3Client(conn);
SFTPv3FileAttributes attribute = sftpConn.lstat(path);
entry.attributes = attribute;
entry.filename = path.substring(path.lastIndexOf("/") + 1);
} catch (IOException e) {
throw e;
} finally {