vote up 1 vote down star

Something like:

//Get all search data
$search = new search('C:\', '*.exe');
while($item = $search->next())
{
$details = $item->getDetails();
append_details('C:\files.txt', implode_details($details));
}

But in NSIS (http://nsis.sourceforge.net/)

flag

3 Answers

vote up 0 vote down

no clue. never heard of it. maybe someone else here has. if they don't, try the nsis forum

but at the risk of downvotes i must ask: why do you think you need to scan all of the *.exe files during the install process?

link|flag
vote up 0 vote down

Well, really it could be in any language, NSIS is just easier for a really small project.

link|flag
vote up 1 vote down

You could use the FindFirst/FindNext functions to loop through everything in a particular directory.

FindFirst $0 $1 "c:\*.exe"
FileLoop:

StrCmp $1 "" DoneFileLoop ;Check for no files
DetailPrint $1 ;Print file name

;Code to output whatever details you wanted to a txt file here

FindNext $0 $1 ;Get the next file from the list
goto FileLoop ;Go back to the top and check for no files

DoneFileLoop:
link|flag

Your Answer

Get an OpenID
or

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