We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 299c192 commit 8a29c2fCopy full SHA for 8a29c2f
src/main/java/org/scijava/io/FileLocation.java
@@ -52,6 +52,10 @@ public FileLocation(final String path) {
52
this(new File(path));
53
}
54
55
+ public FileLocation(final URI path) {
56
+ this(new File(path));
57
+ }
58
+
59
// -- FileLocation methods --
60
61
/** Gets the associated {@link File}. */
0 commit comments