Hello, my installation project has several files to be installed, and they all are located in the same root folder where sbp project file is also located. For example, my sbp is under this directory in my hard-disk:

Code:
D:\Projects01\install.sbp
And the files to be installed are addressed like this in the Script Editor:

Code:
Install File(s) "D:\Projects01\files\001.xyz"
Install File(s) "D:\Projects01\files\002.xyz"
Install File(s) "D:\Projects01\files\003.xyz"
...
My problem is, whenever I need to rename the root folder "Projects01" or just move it somewhere else in my hard-disk, the project requires me to relocate every single *.xyz file in the Script Editor again. Otherwise SetupBuilder compiler cannot find these files (obviously), and gives errors. Instead of using the full address like "D:\Projects01\files\001.xyz" in the ScriptEditor, is it possible to shorten it like "..\files\001.xyz" where ".." means the location of main sbp file (root)?

Thank you in advance for your assistance!