[PHP] Re: code to see files in directories

2001-08-18 Thread Sid
Try this -- shorter. I only tested it out in Win(32)though ? $handle=opendir('.'); echo Directory handle: $handle\n; echo Files:\n; while ($file = readdir($handle)) { echo $file\n; } closedir($handle); ? At 03:00 PM 8/8/01 +0200, you wrote: [EMAIL PROTECTED] (Eduardo Kokubo) wrote: I think I

[PHP] Re: code to see files in directories

2001-08-08 Thread Henrik Hansen
[EMAIL PROTECTED] (Eduardo Kokubo) wrote: I think I saw a code to list the files, subdirectories and the files in the subdirectories of a simple directory in this list some time ago, but I didn't save it. Considering the quantitie of messages in this list, It's quite dificult to find