Get a File object for a file or directory within #resourceBaseFolder @param foldersAndFile - a list of optional folders in path with the actual file name as the last in the list @return a File object
(String... foldersAndFile)
| 64 | * @return a File object |
| 65 | */ |
| 66 | public static File getFile(String... foldersAndFile) throws FileNotFoundException { |
| 67 | return new File(get(foldersAndFile)); |
| 68 | } |
| 69 | } |