Hello! My current problem is that I have multiple files that I will be dynamically loading into my project at runtime that all have the same name, but are in specified paths to differentiate what 'model' they are for. In Construct, I know I'm able to import files and put them in their own folder inside the project tree, though to reference them I have to only specify the file name to access it regardless of where it's located. For most of my files, this is perfectly fine. When I export the project through the Node Webkit all of those files are jammed into the same archive (package.nw) in the same root directory. The problem with the other files though, is that the other files I need to include require their own paths so placing them all inside the same folder is not viable. Short of renaming the package to a zip and manually creating the path structure and placing the files inside or simply placing them externally, is there a way that I can preserve the folders/paths I use in the project when exported into the Node Webkit package?
(I'm currently making my own plugin using a 3rd-party framework so unfortunately just renaming the files to make them unique is currently not viable :c )