mirror of
https://github.com/mitb-archive/filebot
synced 2024-12-21 23:38:50 -05:00
Resolve relative file paths relative to current script rather than home folder (for included sub-scripts)
This commit is contained in:
parent
cf932c7c61
commit
cbd5af4ef6
@ -115,11 +115,11 @@ public class ExpressionFormatFunctions {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static List<String> readLines(Script context, Object path) throws Exception {
|
public static List<String> readLines(Script context, Object path) throws Exception {
|
||||||
return FileUtilities.readLines(getUserFile(context, path));
|
return FileUtilities.readLines(resolve(context, path));
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Object readXml(Script context, Object path) throws Exception {
|
public static Object readXml(Script context, Object path) throws Exception {
|
||||||
return new XmlSlurper().parse(getUserFile(context, path));
|
return new XmlSlurper().parse(resolve(context, path));
|
||||||
}
|
}
|
||||||
|
|
||||||
public static File getUserFile(Script context, Object path) throws Exception {
|
public static File getUserFile(Script context, Object path) throws Exception {
|
||||||
|
Loading…
Reference in New Issue
Block a user