×
Quick Way to Find files using the Command Prompt or Powershell
By simply adding this commnad on the command prompt it will generate a text files [notepad] that has all the mp4 files and where it is located, this is really cool way to document your files because you cannot achieve this by just using the normal search feature of windows
windows:
dir -r -filter "*.mp4" > allmytextfiles.txt
linux:
find . -name "*.mp4" -print | less
you can change the *.mp4 files to any kind of file format that you are looking