Check whether a directory exists in PHP

后端 未结 4 1671
暗喜
暗喜 2020-12-16 10:31

I know, I know, this sounds soo easy. But I can\'t seem to find the correct answer on the Internet.

One of the solution I found was to use i

相关标签:
4条回答
  • 2020-12-16 11:06

    Should work correctly. From is_dir() documentation:

    Returns TRUE if the filename exists and is a directory, FALSE otherwise.

    Well, anyway if it doesn't try this:

    if(file_exists($dir) && is_dir($dir))
    

    BTW. results of these functions are cached in stat cache. Use clearstatcache() to clean that cache.

    0 讨论(0)
  • 2020-12-16 11:12

    You'll probably want to use opendir() after is_dir() agrees that the path (could) be a directory.

    If the resource returned by opendir() is valid, you know you have a directory, and already have a handle to read it.

    Just be sure to call closedir(), either way, if a valid handle is returned.

    Edit:

    This answer assumes that you'll be opening the directory either way. If you just need to ensure a path is sane / valid, file_exists() is much cheaper.

    0 讨论(0)
  • 2020-12-16 11:13
    bool file_exists ( string $filename )
    

    Checks whether a file or directory exists.

    http://php.net/manual/en/function.file-exists.php

    0 讨论(0)
  • 2020-12-16 11:14

    You could try this:

    if(is_dir($dir) && is_writeable($dir))
    {
        // ...
    }
    
    0 讨论(0)
提交回复
热议问题