Skip to content
⌘ NSIS Forum Archive

Help! Script what I got to work, but don't know how

5 posts

Aaron's rod#

Help! Script what I got to work, but don't know how

I am trying to make a small utility what creates file listin from directory. I got it apparently to work, but I don't know how. 🙂

I made this by modifying NSIS Archive examples, so it's no wonder that I don't know how it's working.

The part what I don't get is where it's start to scanning new folder. Where all the sub directory names are saved?

I am sure that there is simpler way to do this so pleas help me! 😢
Afrow UK#
They are saved on the stack with Push. They are then Popped off the stack again to start a new FindFirst.

-Stu
Aaron's rod#
Thanks

Oh now I get it. I thought that every time when it savas subdir name it would overwrite previous dir name. *Bangs head against wall*
Afrow UK#
This is what I use in my scripts:


-Stu
Aaron's rod#
Originally posted by Afrow UK
This is what I use in my scripts:


-Stu
Whoa! This is creat thanks Stu. 👍