win8 - any way to search only for files in uppercase?

ninaholic37

Golden Member
Apr 13, 2012
1,883
31
91
I think you can type this in the Command Prompt:

dir c:\ /s /b | findstr "name"

Where "name" is whatever you're looking for. That might be overkill though.
 

Cerb

Elite Member
Aug 26, 2000
17,484
33
86
Windows is fundamentally not case-sensitive, so there will not be a convenient included method. You'll need something like posted above, or 3rd-party GUI search program (I've found AstroGREP to be among the more useful ones).
 

tommo123

Platinum Member
Sep 25, 2005
2,617
48
91
ninaholic - thanks but it's not a specific name i'm trying to search for. trying to find all uppercase files in a folder of thousands to move elsewhere.

cerb - will try that proggy.

thanks
 

tommo123

Platinum Member
Sep 25, 2005
2,617
48
91
sorry, i don't get it. i've ticked that, left filename blank but it just brings up everything in the folder.
 

tommo123

Platinum Member
Sep 25, 2005
2,617
48
91
thank but like the other it seems to need some kind of filename to search for first
 

yinan

Golden Member
Jan 12, 2007
1,801
2
71
You could probably write something like this in powershell relatively easily. But one of the main problems is that Windows filenames are not case sensitive. You cannot have NEWFILE.TXT and newfile.txt in the same directory, and a check of the existence of NEWFILE.TXT will return true even if the file is displayed as newfile.txt.
 

Rhonda the Sly

Senior member
Nov 22, 2007
818
4
76
thank but like the other it seems to need some kind of filename to search for first
Put the regex in the filename, it'll find file that matches the regex. As an example of what can be done, I used "^[A-Z]", which matches all files that start with a capital letter, and was able to distinguish "gps_1123_audio - Copy.mp3" and "GPS_1123_audio.mp3."