php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #30368 is_dir() return true after rmdir()
Submitted: 2004-10-08 18:20 UTC Modified: 2004-10-08 18:42 UTC
From: andre dot steffens at adress-research dot de Assigned:
Status: Not a bug Package: Directory function related
PHP Version: 4.3.9 OS: Win2k
Private report: No CVE-ID: None
 [2004-10-08 18:20 UTC] andre dot steffens at adress-research dot de
Description:
------------
is_dir() seems to cache the last status for a given dir and don't check if it still exists.

Reproduce code:
---------------
<?php

mkdir('dir');
is_dir('dir');
rmdir('dir');
$err = is_dir('dir');

?>

Expected result:
----------------
$err = false;

Actual result:
--------------
$err = true;

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2004-10-08 18:30 UTC] tony2001@php.net
Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
http://www.php.net/manual/ and the instructions on how to report
a bug at http://bugs.php.net/how-to-report.php

Expected behaviour, read about clearstatcache();
 [2004-10-08 18:42 UTC] andre dot steffens at adress-research dot de
I think that after some file/dir functions the stat cache should be clean automatically.

like: rmdir(); unlink(); ... all functions that alter files or dirs ...
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 08:01:28 2024 UTC