Please i need help. i am supposed to write a program that goes through a computer searching for a particular file,
i really don;t know how how to go about it.
please a clue will help so much.Thank you
First I would start by coding a console based program which do the folder/directory scan. Forget about the GUI, it is irrelevant. Second, you have to apply recursion, starting from each root of target FS: given a folder, list files and verify if any matches to your target, and for each sublfolder apply your scan method.Good work.