how to take a tree from source and put it to an other location for destination ?
An example:
takes all files from <sourcedir>\Server and below and installs it to $INSTDIR\Server
File /r Server
What i want to do is to place it to $INSTDIR\*.* (i.e. pruning the "Server" directory.
The only way i found is to list each file of the tree seperately and treat it that way:
Is there an easier way ?
File /oname=file1.txt Server\file1.txt
File /oname=file2.txt Server\file2.txt
...
regards