Search found 2 matches

by mpking
11 Mar 2015 12:17
Forum: DOS Batch Forum
Topic: Find all lowercase files in a sub directory
Replies: 3
Views: 2416

Re: Find all lowercase files in a sub directory

Thanks! That fit nicely, and the undocumented features allowed me to have some error handling. dir /b /s %EXTRACT% | findstr "[abcdefghijklmnopqrstuvwxyz][^\\]*$" >> %LOG%\%LOGFILE% IF %ERRORLEVEL% NEQ 1 ( ECHO Lower Case File Found ECHO Check log at %LOG%\%LOGFILE% pause GOTO:EOF ) Yes, t...
by mpking
11 Mar 2015 10:23
Forum: DOS Batch Forum
Topic: Find all lowercase files in a sub directory
Replies: 3
Views: 2416

Find all lowercase files in a sub directory

Anyone have an example I can use?

I need to search thru a bunch of folders and subfolders, and find any files/folders that have lowercase characters. I don't need to change them, just list them, or return an error code, or both.