/**
* Get meta-info about files. Default direct (non-caching) implementation.
* @see CacheFSInfo
*
* <p><b>This is NOT part of any supported API.
* If you write code that depends on this, you do so at your own risk.
* This code and its internal interfaces are subject to change or
* deletion without notice.</b>
*/
public class FSInfo {
/** Get the FSInfo instance for this context.
* @param context the context
* @return the Paths instance for this context
*/
return instance;
}
protected FSInfo() {
}
}
try {
return file.getCanonicalFile();
} catch (IOException e) {
return file.getAbsoluteFile();
}
}
}
return file.isDirectory();
}
}
try {
return Collections.emptyList();
return Collections.emptyList();
return Collections.emptyList();
}
return list;
} finally {
}
}
}