blob: ea00c248ddd2cce12f6db3f97c458c29d01bb305 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
package musichub.util;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
/**
* Class offering a path validation method.
*
* @author Aimeric ADJUTOR
* @version 1.0
*/
public final class PathValidation {
/**
* Method that just throws an AssertionError if the class is called
*
* @throws AssertionError you can't instantiate this class
* @author Aimeric ADJUTOR
*/
public PathValidation() {
throw new AssertionError("You just can't instantiate this class.");
}
/**
* Method that checks the validity of a given path and file.
*
* @param inputPath the path given by the user
* @return a boolean
*/
public static boolean isPathValid(String inputPath) {
boolean isExtensionValid = false;
int index = inputPath.lastIndexOf('.');
if (index > 0) {
String extension = inputPath.substring(index + 1);
if (extension.equals("wav")) {
isExtensionValid = true;
}
}
Path path = Paths.get(inputPath);
return (Files.exists(path) & isExtensionValid);
}
}
|