Archive: Hidden files


Hidden files
Is there any way of *not* including hidden files in my distribution?

The command:

File /R "..\myapp\*.*"

includes all of my source control directories at the moment, which is a bit of a pain.


Read the docs for the File command.
http://nsis.sourceforge.net/Docs/Chapter4.html#4.9.1.5


There's nothing in there about hidden files that I can see.


Use /X to exclude any file patterns you don't want. This can be used to exclude your CVS folders.


Ah, of course, I should've thought of that. Cheers.