Create the directory if not exists #100
@ -24,6 +24,14 @@ public class StorageService {
|
|||||||
|
|
||||||
public StorageService(FileRepository filerepo){
|
public StorageService(FileRepository filerepo){
|
||||||
this.fileRepo = filerepo;
|
this.fileRepo = filerepo;
|
||||||
|
|
||||||
|
if(!Files.exists(rootLocation)){
|
||||||
|
try {
|
||||||
|
Files.createDirectories(rootLocation);
|
||||||
|
} catch(IOException e){
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user