In terminal I try to delete a directory but that doesn't work:
myuser$ rm -rf foo/
rm: foo/: Directory not empty
In my main directory I have only foo :
myuser$ ls
foo
I haven't any problem with my 'ls -la' command:
myuser$ ls -la
drwxrwxrwx@ 1 myuser staff 65536 1 mai 10:53 .
drwxrwxrwx@ 1 myuser staff 32768 28 aoû 2013 ..
drwxrwxrwx 1 myuser staff 32768 1 mai 10:36 foo
Directory foo seems to be empty :
myuser$ ls foo/
myuser$ ls -la foo/
ls: : No such file or directory
total 192
drwxrwxrwx 1 myuser staff 32768 1 mai 10:36 .
drwxrwxrwx@ 1 myuser staff 65536 1 mai 10:53 ..
But the line "ls: : No such file or directory" is weird. And I think it's the reason I can't delete this directory. We could see too, that "ls foo" return an empty line, like there is something, but what? And how delete it?
Thanks