PDA

Click to See Complete Forum and Search --> : File check


nebulom
Apr 30th, 2005, 04:49 AM
This may sounds silly but I need help on file check. Something like

if file_not_exists("filename")

How to do this? Thanks.

visualAd
Apr 30th, 2005, 05:04 AM
file_exists() (http://www.php.net/file_exists)


if (! file_exists('filename'))

nebulom
Apr 30th, 2005, 05:09 AM
Whew, almost got it. Thanks, Adam.