Static Public Member Functions | |
static File | searchFileIn (String[] directories, String filename) throws FileNotFoundException |
static File | searchFileInClassPath (String filename) throws FileNotFoundException |
static File | searchFileInHomeDirectory (String filename) throws FileNotFoundException |
static File | searchFileInWorkingDirectory (String filename) throws FileNotFoundException |
static File | searchFileInCurrentDirectory (String filename) throws FileNotFoundException |
static File | searchFileInRootDirectory (String filename) throws FileNotFoundException |
static File | searchFileInAllDirectories (String filename) throws FileNotFoundException |
static File tit.utility.Files.searchFileIn | ( | String[] | directories, | |
String | filename | |||
) | throws FileNotFoundException [static] |
Searches for a file
directories | The directories to search in. | |
filename | The file to search. |
FileNotFoundException | Is thrown when the file is not found. |
static File tit.utility.Files.searchFileInClassPath | ( | String | filename | ) | throws FileNotFoundException [static] |
Searches for a file in the classpath.
filename | The file to search. |
FileNotFoundException | Is thrown when the file is not found. |
static File tit.utility.Files.searchFileInHomeDirectory | ( | String | filename | ) | throws FileNotFoundException [static] |
Searches for a file in the user's home directory.
filename | The file to search. |
FileNotFoundException | Is thrown when the file is not found. |
static File tit.utility.Files.searchFileInWorkingDirectory | ( | String | filename | ) | throws FileNotFoundException [static] |
Searches for a file in the working directory.
filename | The file to search. |
FileNotFoundException | Is thrown when the file is not found. |
static File tit.utility.Files.searchFileInCurrentDirectory | ( | String | filename | ) | throws FileNotFoundException [static] |
Searches for a file in the current directory.
filename | The file to search. |
FileNotFoundException | Is thrown when the file is not found. |
static File tit.utility.Files.searchFileInRootDirectory | ( | String | filename | ) | throws FileNotFoundException [static] |
Searches for a file in the root directory.
filename | The file to search. |
FileNotFoundException | Is thrown when the file is not found. |
static File tit.utility.Files.searchFileInAllDirectories | ( | String | filename | ) | throws FileNotFoundException [static] |
Searches for a file in all directories.
filename | The file to search. |
FileNotFoundException | Is thrown when the file is not found. |