Neha wants to view the list of all the files in the computer saved with the filename my project write the statement that it will get her the the desired result
Answers
Answered by
0
Answer:
In order to view a list of all the files in the computer with the name "my project," Neha can use the command prompt (Windows) or terminal (MacOS/Linux) and execute the following command:
On Windows:
dir /s /b "my project*"
On MacOS/Linux:
find / -name "my project*"
This command will search for all files and folders recursively starting from the root directory, with names starting with "my project" and will display the file paths of the matching files.
It's worth noting that the command used for windows might be different for Mac or Linux, but the command logic of the search will remain the same. If you want to perform search in specific directory please use 'cd' command to navigate to that directory before running the above command.
Similar questions