FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » Imported messages » comp.lang.php » test for file existance
Show: Today's Messages :: Polls :: Message Navigator
Return to the default flat view Create a new topic Submit Reply
Re: test for file existance [message #182853 is a reply to message #182851] Sat, 21 September 2013 15:55 Go to previous messageGo to previous message
richard is currently offline  richard   
Messages: 213
Registered: June 2013
Karma:
Senior Member
On Sat, 21 Sep 2013 10:16:02 -0400, richard wrote:

> What would be a good way to test to see if the file actually esists?
>
> In my database I may have a file name listed, but don't have the actual
> file.
> So if you don't have the file, then why reference it?
> For simplicity. When I enter one part of the pair, the other part simply
> gets a "b" added to the name.
> e.g 100 and 100b.
>
> Because there is no file to work with, I want to be able to post a notice
> saying "not available" or what ever.

Using their own example:
<?php
$filename = '/path/to/foo.txt';

if (file_exists($filename)) {
echo "The file $filename exists";
} else {
echo "The file $filename does not exist";
}
?>

Having tested this, it appears the response is wrong.
I am told the file does not exist even if it does.
is there something else I could use?
[Message index]
 
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: ann: PDF report writer
Next Topic: Setting & displaying Variables
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Sat Nov 23 00:25:51 GMT 2024

Total time taken to generate the page: 0.04694 seconds