PHP » PYTHON |
login |
register |
about
|
PYTHON file_exists
is this article helpful?
|
Python replacement for PHP's file_exists
[
edit
| history
]
import os os.path.exists(filename) file_exists(PHP 4, PHP 5) file_exists — Checks whether a file or directory exists Description
bool file_exists
( string $filename
)
Checks whether a file or directory exists. Parameters
Return ValuesReturns TRUE if the file or directory specified by filename exists; FALSE otherwise.
Warning
This function returns FALSE for files inaccessible due to safe mode restrictions. However these files still can be included if they are located in safe_mode_include_dir.
Examples
Example #1 Testing whether a file exists
<?php
Notes
Tip
As of PHP 5.0.0, this function can also be used with some URL wrappers. Refer to List of Supported Protocols/Wrappers for a listing of which wrappers support stat() family of functionality. See Also
|
more
Recently updated
more
Most requested
more
Last requests
|