1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-11-11 20:05:04 -05:00

Support String / File

This commit is contained in:
Reinhard Pointner 2018-07-26 08:35:47 +07:00
parent 65c5355752
commit 834b28fe78

View File

@ -65,6 +65,10 @@ public class ScriptShellMethods {
return new File(self, path.getPath()); return new File(self, path.getPath());
} }
public static File div(String self, File path) {
return new File(self, path.getPath());
}
public static String negative(String self) { public static String negative(String self) {
return '-' + self; return '-' + self;
} }