Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
615 views
in Technique[技术] by (71.8m points)

file io - Check whether a directory exists in PHP

I know, I know, this sounds soo easy. But I can't seem to find the correct answer on the Internet.

One of the solution I found was to use is_dir.

if(is_dir($dir))
  echo 'directory exists';
else
  echo 'drectory not exist';

But this is wrong-- All this function does is to check whether the $dir is a directory, it doesn't check whether the directory exists, or not. In other words if I put:

$rootDir = "C:\Documents and Settings\test\My Documents\Image Directory\Me Dog";

then the function will return a true, even though you can find no such directory on your web server.

Any ideas?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Should work correctly. From is_dir() documentation:

Returns TRUE if the filename exists and is a directory, FALSE otherwise.

Well, anyway if it doesn't try this:

if(file_exists($dir) && is_dir($dir))

BTW. results of these functions are cached in stat cache. Use clearstatcache() to clean that cache.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...