Reply
does anyone know the function...
Old 08-01-2004, 04:07 PM does anyone know the function...
amaranth's Avatar
Average Talker

Posts: 16
who knows what function identifies whether or not a file exists?
im vaguely sure such function exists because i noticed it in a manual a while ago. except now i dont have the manual and cant remember at all what exactly it was that i saw in it.
can anyone help me there?
i need an answer relatively quickly.

__________________
~ I have seen life on this planet. That is why I am looking elsewhere. ~
amaranth is offline
Reply With Quote
View Public Profile Visit amaranth's homepage!
 
When You Register, These Ads Go Away!
Old 08-01-2004, 04:15 PM
Unknown.

Posts: 1,693
Use the file_exists function...

PHP Code:
<?php
$filename 
'/path/to/foo.txt';

if (
file_exists($filename)) {
    print 
"The file $filename exists";
} else {
    print 
"The file $filename does not exist";
}
?>
More info... http://www.phpbuilder.com/manual/fun...ile-exists.php

-James
Dark-Skys99 is offline
Reply With Quote
View Public Profile
 
Old 08-01-2004, 04:23 PM
Christopher's Avatar
Iced Cap

Latest Blog Post:
PHP and Unicode with UTF-8
Posts: 3,111
Location: Toronto, Ontario
Note that directories are 'files' too. So you can use is_file() and is_dir() to find out specifically if it is a file or directory.
Christopher is offline
Reply With Quote
View Public Profile Visit Christopher's homepage!
 
Old 08-02-2004, 04:44 PM
amaranth's Avatar
Average Talker

Posts: 16
thanks you guys that helps
__________________
~ I have seen life on this planet. That is why I am looking elsewhere. ~
amaranth is offline
Reply With Quote
View Public Profile Visit amaranth's homepage!
 
Reply     « Reply to does anyone know the function...
 

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML

 


Page generated in 0.12466 seconds with 12 queries