aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/musichub/business/PathValidation.java
blob: 97f8759343bdc35e3841e75f8d9a7a422619ea14 (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
package musichub.business;

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 class PathValidation {

    /**
     * Methode that checks the validity of a given path
     *
     * @param inputPath the path given by the user
     * @return a boolean
     */

    public static boolean isPathValid(String inputPath) {
        Path path = Paths.get(inputPath);
        return Files.exists(path);
    }

}