I want to write an NSIS installer that scans a particular folder of the users file system, and adds a Section for each entry:

FindFirst $0 $1 $DOCUMENTS\Special
loop:
  StrCmp $1 "" done
  ; Add section here!
  FindNext $0 $1
  Goto loop
done:
FindClose $0

However, I can't find a way to dynamically add sections. Is that possible?

link|improve this question

That is not going to be possible AFAIK. NSIS is a compiler and not an interpreter, and thus is not available during runtime (install time). – leppie Jan 20 at 12:03
feedback

1 Answer

up vote 1 down vote accepted

The number of sections is set at compile time. It is possible to create hidden sections, so it is possible to make it seem dynamic if the maximum is known at compile time.

I don't know what you are doing with the files but I suggest you create a custom page with a listbox for the list of files...

link|improve this answer
In the end I used hidden sections, and capped them at a level that should be well above the maximum. – Neil Mitchell Jan 20 at 17:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.