PHP » PYTHON |
login |
register |
about
|
PYTHON SplFileInfo::isDir
is this article helpful?
|
Python replacement for PHP's SplFileInfo::isDir
[
edit
| history
]
os.path.isdir(path) Return True if path is an existing directory. This follows symbolic links, so both islink() and isdir() can be true for the same path. SplFileInfo::isDir(PHP 5 >= 5.1.2) SplFileInfo::isDir — Tells if the file is a directory Description
public bool SplFileInfo::isDir
( void
)
This method can be used to determine if the file is a directory. ParametersThis function has no parameters. Return ValuesReturns TRUE if a directory, FALSE otherwise. Examples
Example #1 SplFileInfo::isDir() example
<?phpThe above example will output something similar to: bool(true) bool(false)
|
more
Recently updated
more
Most requested
|