is there a way in C/C++ to sacn the whole computer for executable files?
the process would scan all the folders and sub folders recursively.
the process would scan all the folders and sub folders recursively.
Get root directory
RecursiveScan(root);
RecursiveScan(File file){
if file is dir
foreach File f in dir
RecursiveScan (f)
else
Scan(f)
}
Comment