Skip to content
⌘ NSIS Forum Archive

notion of current directory for File cmd

2 posts

i_nsis_t#

notion of current directory for File cmd

Maybe there's a way to do this already, but I've missed it. Wondering if you can set the "current directory" so that when using the File command, the path would be relative to that dir?

What I am doing now is something like this:

!define top some_path
File ${top}\bin\x86\foo
File ${top}\bar

But, if possible, I might do...

SetCurrentDir some_path
File bin\x86\foo
File bar


Just a thought..