Posted by Graham Cossey on 11/22/05 16:23
I'm attempting to read a list of files in a directory using readdir()
but am having problems with mpeg files not seemingly being read.
Cope snippet:
$count = 0;
while (false !== ($file = readdir($open_dir)))
{
if ($file != '.' && $file != '..')
{
if (file_exists("$VID_DIR/$file"))
{
$count++;
$count counts any 'avi' files but not 'mpg' files.
Any suggestions much apreciated.
--
Graham
Navigation:
[Reply to this message]
|