10
4
How can I find all my video files in windows 8.1? I go into the windows 8.1 start screen and start typing "*.avi". It finds a small number of videos on my C drive. Search appears to only look on the system drive. It does not bother to search D or E where the files are actually located. Also, I don't know what file extensions I have on my machine....avi, .mov, .mp4, I can't name all the file extensions that exist for videos.
Ideally, I want:
- The ability to exclude directories from the search
- Find all videos of all types without specifying each file extension
- I'm thinking common known file extensions. Not looking at binary data or anything like that.
- Search all drives
Have you added D and E to the search index? – Ƭᴇcʜιᴇ007 – 2014-04-11T19:44:44.720
@techie007 - No. I was not aware such a thing existed. Please note I want to search all files in all places on my machine. I don't think that's a good fit for index searches where I specify specific locations. – P.Brian.Mackey – 2014-04-11T19:45:01.993
usually indexes are required for 'contents' searches, not simple filename/type. indexing speeds them up, but isn;t required. @P.Brian.Mackey, in Windows Explorer, select the "Computer" node in the treeview on the left, and then put in your search query. it will search all objects under "Computer". as for your type dilema, this may help: https://en.wikipedia.org/wiki/List_of_file_formats#Video
– Frank Thomas – 2014-04-11T19:52:39.950I'm not sure I follow -- You add the drives to the index once, they get indexed form there on in, you can search them. As you say, video files could have just about any extension they want, so having something that can recognize all possible "video" types (past, present and future) is practically impossible (IMO).
– Ƭᴇcʜιᴇ007 – 2014-04-11T19:53:41.777Both helpful comments. I'm still holding out hope for a good way to find all video's without specifying all ~20 extensions 1 by 1. – P.Brian.Mackey – 2014-04-11T19:59:40.543
1
you can search for multiple extensions by delimiting them with OR them: *.avi OR *.mov OR *.mkv OR ... *.N. theoretically semicolon should work, but having trouble replicating it on win7. more info here: http://www.vistax64.com/tutorials/158288-advanced-searches.html?ltr=A
– Frank Thomas – 2014-04-11T20:26:36.687That works in Windows 8.1. It is case sensitive! (I tried lowercase first and that fails). – P.Brian.Mackey – 2014-04-11T20:38:53.000