From: [EMAIL PROTECTED]
Operating system: redhat 7.1
PHP version: 4.0.4pl1
PHP Bug Type: Filesystem function related
Bug description: if the filesize if more than 2GB, filesystem functions do not seem
to recognize
$folder = dir(.);
$folder->rewind() ;
clearstacache();
while ($file=$folder->read()) {
if (is_dir ($file)) {
do_some thing.......
}
elif (is_file($file)) {
do_somethingelse.....
}
......
.....
}
is_file() call in the above code does not return ture if the file size is > 2GB.
I was able to print $file, just inside the loop (meaning the folder object has the
file in the filelist
and hence it is the is_file() which is filtering it out.
I tried other functions like file_exists(), is_readable() etc in place of is_file()
without any success.
--
Edit Bug report at: http://bugs.php.net/?id=10482&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]