Use file separator
This commit is contained in:
parent
af43e19018
commit
7a9ed0f512
@ -893,7 +893,7 @@ public class UtilityCommands extends MethodCommands {
|
|||||||
StringBuilder name = new StringBuilder();
|
StringBuilder name = new StringBuilder();
|
||||||
if (relative.isAbsolute()) {
|
if (relative.isAbsolute()) {
|
||||||
relative = root.toURI().relativize(file.toURI());
|
relative = root.toURI().relativize(file.toURI());
|
||||||
name.append("../");
|
name.append(".." + File.separator);
|
||||||
}
|
}
|
||||||
name.append(relative.getPath());
|
name.append(relative.getPath());
|
||||||
return name.toString();
|
return name.toString();
|
||||||
|
Loading…
Reference in New Issue
Block a user