ls / rm etc return "no such file or directory"

2007-08-09 Thread TomL
I've been googling for two hours and I can't find any relevant information on this. Can the following be explained, and how can it be resolved? bash: $ vdir -d .* vdir: cannot access .tmp1732200708091223: No such file or directory drwxr-xr-x 1 xxx Domain Users 0 Aug 9 12:37 . drwxr-xr-x 1 xxx D

Re: ls / rm etc return "no such file or directory"

2007-08-09 Thread TomL
Files/directories in this mode only occur on the system when created from within cygwin. In this instance, it was created by FileUtils::mkdir_p in a cygwin ruby script. It went into this mode after attempting to remove it with FileUtils::rm_rf Incidentally, that may be the trick -- there might

Re: ls / rm etc return "no such file or directory"

2007-08-09 Thread TomL
Based on the idea that its a file locking problem, I ran "handle" from sysinternals, and it showed up as an open filehandle in an explorer.exe process. I terminated the process, and all is well. I don't understand how it got into that state yet, but I'm closer. Thanks for the hints. Warren Yo