Quick Search:
 
 PHP Code: Check if a file exists Jump to:  
Category: >> PHP Code >> Check if a file exists  

<< lastnext >>

Snippet Name: Check if a file exists

Description: Use PHP to check if a file exists or not.

Also see:
» Saving Remote Images With PHP
» Include All Files In A Directory
» More File Type Detection in PHP
» Get Current Page URL
» Get Current Directory Name
» Measure script run time
» Write to File example
» Export table to Excel or MS Word file
» Count lines in file
» Copy File From Server
» Truncate URLs for clean appearance.
» Calculate File Size In Directory

Comment: (none)

Language: PHP
Highlight Mode: PHP
Last Modified: March 16th, 2009

<?PHP
 
$filename = 'test.csv'; 
 
IF (FILE_EXISTS($filename)){
 
PRINT "The file $filename exists";
 
}ELSE{
 
PRINT "The file $filename does not exist";
 
}
 
?>
 


 
   Home |    Search |    Code Library |    Sponsors |    Privacy |    Terms of Use |    Contact Us © 2003 - 2024 psoug.org