ReplayFileIO#makeFolderFromPath removes dots (.) from file path to not confuse Windows File Systems. before: /eclipse/./replay_videos/, after: /eclipse/replay_videos/

This commit is contained in:
CrushedPixel
2015-07-23 13:11:01 +02:00
parent eb57e7be2c
commit 6547595318

View File

@@ -42,7 +42,7 @@ public class ReplayFileIO {
}
private static File makeFolderFromPath(String path) throws IOException {
File folder = new File(path);
File folder = new File(new File(path).toPath().normalize().toUri());
FileUtils.forceMkdir(folder);
return folder;
}