aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/com/jantuomi/tunkki/utils/Utilities.java
blob: f49965f50227e4f95ea42f98877345fa0f16f47d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.jantuomi.tunkki.utils;

import java.nio.file.Path;
import java.nio.file.Paths;

/**
 * Created by jan on 10.6.2016.
 */
public class Utilities {
    private Utilities() {}

    public static String getBasePath() {
        Path currentRelativePath = Paths.get("");
        String s = currentRelativePath.toAbsolutePath().toString();
        return s;
    }
}