Risposte:
Controlla le autorizzazioni di ./directory
: se hai le autorizzazioni di lettura ma non esegui le autorizzazioni su questa directory, allora hai i diritti sufficienti per leggere l'elenco dei file in quella directory, ma non puoi effettivamente utilizzare questi file o ottenere informazioni su di essi.
sessione di esempio:
$ cd /tmp/
$ mkdir /tmp/test
$ touch /tmp/test/file
$ ls -la test/
total 44
drwxr-xr-x 2 myself myself 4096 janv. 5 11:01 .
drwxrwxrwt 42 root root 54242 janv. 5 11:01 ..
-rw-r--r-- 1 myself myself 0 janv. 5 11:01 file
$ chmod a-x /tmp/test # remove execute permission for all
$ ls -la test/
total 0
d????????? ? ? ? ? ? .
d????????? ? ? ? ? ? ..
-????????? ? ? ? ? ? file
$ ls -ld test/
drw-r--r-- 2 myself myself 4096 Jan 5 11:01 test/
$ cat test/file
cat: test/file: Permission denied
$ chmod a+x /tmp/test # readd execute permission for all
$ ls -la test/
total 44
drwxr-xr-x 2 myself myself 4096 janv. 5 11:01 .
drwxrwxrwt 42 root root 54242 janv. 5 11:01 ..
-rw-r--r-- 1 myself myself 0 janv. 5 11:01 file
$ ls -ld test/
drwxr-xr-x 2 myself myself 4096 Jan 5 11:01 test/
$ cat test/file
$
Alcune ls
versioni mostrano messaggi di errore quando non possono visualizzare informazioni sui file.
man readdir
per maggiori dettagli di basso livello. Si noti che questo comportamento non è specificato da POSIX.
test
directory o no (controlla d char per '.' E '..')?