Skip to content
Snippets Groups Projects
Commit dcf0b859 authored by Petr Bainar's avatar Petr Bainar
Browse files

iss1011: addressing merge request discussion on file existence check

parent 51f09239
No related branches found
No related tags found
1 merge request!6Iss1011
...@@ -71,7 +71,7 @@ public class BenchmarkJobManager { ...@@ -71,7 +71,7 @@ public class BenchmarkJobManager {
@Override @Override
public boolean fileExists(String filePath) { public boolean fileExists(String filePath) {
File f = new File(filePath); File f = new File(job.getDirectory().resolve(filePath).toString());
return f.exists() && !f.isDirectory(); return f.exists() && !f.isDirectory();
} }
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment