Switched to environment instead of property

This commit is contained in:
Przemek Dragańczuk 2020-02-14 20:17:40 +01:00
parent 20881d85d4
commit 0e09d22025
1 changed files with 2 additions and 4 deletions

View File

@ -7,17 +7,15 @@ import java.nio.file.StandardOpenOption;
import java.util.List;
import java.util.Optional;
import org.eclipse.jetty.util.log.Log;
public class UrlFile {
private File file;
public UrlFile() throws IOException{
String path = System.getProperty("file.location", "./urls.csv");
String path = System.getenv().getOrDefault("file.location", "./urls.csv");
this.file = new File(path);
if(! file.exists()){
if (!file.exists()) {
file.createNewFile();
}
}