getFile
public File getFile(String path)
This implementation requires a relative path. The relative path may
not start with "../" or once "normalized" start with "../". Here
"normalized" means that "./" and "path/.." segments are removed,
e.g., "dir1/../../dir2" once normalized would be "../dir2".
- Specified by:
getFile in interface FileSource
- Parameters:
path - the relative path to the desired File.
- Returns:
- the File represented by the given relative path or null if the path is null or the File it represents does not exist.