* @throws FileNotFoundException if the path could not be resolved.
*/
public FileStatus getFileStatus(Path path) throws IOException {
path = makeAbsolute(path);
CephStat stat = new CephStat();
ceph.lstat(path, stat);
FileStatus status = new FileStatus(stat.size, stat.isDir(),
ceph.get_file_replication(path), stat.blksize, stat.m_time,
stat.a_time, new FsPermission((short) stat.mode),
System.getProperty("user.name"), null, path.makeQualified(this));
return status;