I'm using mingw32 (as packaged by msysgit for windows), and I'm trying to list all the files on my C drive. I would expect

find /c

to do this. However, this is not what I'm seeing (in an mingw32 window):

$ find /c
 ...
/c/Program Files
/c/Program Files/7-Zip
/c/Program Files/7-Zip/7-zip.chm
...
/c/System Volume Information
find: /c/System Volume Information: Permission denied
/c/WINDOWS
/c/ZInstaller

What gives? Why are the files under WINDOWS and ZInstaller not showing up? If I find /c/windows or find /c/ZInstaller, all is well.

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

The 1.0.11 release specifically addresses this problem. Make sure you using at least that version of msys.

Summary of relevant change:

Added: 2008.07.21
Changes:
Fix bug #1791494: find not reporting all expected matches.

link|improve this answer
Thanks, I was just using the latest msysgit. I'll look at the 1.0.11 version. – Suppressingfire Nov 20 '09 at 1:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.