Archive: Another Question about File function


Another Question about File function
I want to get the name and path of the files to be installed from a file list, then extract them to the destination.
But I got some problems when I try to use :
File $Path$Name
It will display: "File: "$path$name" -> File not found"
Why?


You're confusing run time variables such as $path with compile time instructions such as File.

http://nsis.sourceforge.net/Invoking...n_compile-time

You'll have to read from the list with FileOpen, FileRead and FileClose.

-Stu