PDA

View Full Version : Path for the installl files as a vairable?


Benni_P
28th July 2004, 15:22
Hello,
is it possible to enter a variable instead of the path?
e.g. File "$FOO\Test.txt" instead of File "C:\Test\Test.txt"
So that I only need to change the variable instead of all paths in the script.

Thx
Benni_P

Joel
28th July 2004, 15:40
In my case I use something like:

!define RESPATH "c:\files"

File ${RESPATH}\*.*
File ${RESPATH}\xml\xml.xml

I say yes! :D

Benni_P
28th July 2004, 15:52
Wow!
Thank you. This helps me alot.