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/)
|
|
Something like:
But in NSIS (http://nsis.sourceforge.net/) |
|||
|
|
|
|
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? |
||
|
|
|
|
Well, really it could be in any language, NSIS is just easier for a really small project. |
||
|
|
|
|
You could use the FindFirst/FindNext functions to loop through everything in a particular directory.
|
|||
|
|