Folder/Script Pack creation in Unix

Issue #19 resolved
mezzodrinker repo owner created an issue

The options "Create new Folder..." and "New -> Script Pack" create folders which look like this: <resources folder>\<folder/Script Pack name> Might need to change from \ to / in File constructors.

Comments (2)

  1. mezzodrinker reporter

    Fixed by replacing all occurrences of '\\' and '/' with File.separatorChar and creating all new File instances with the advanced constructor File(String parent, String child) or respectively File(File parent, String child).

  2. Log in to comment