How To Check Directory Exists On Website Verify Folder Is There In PHP
How To Check Directory Exists On Website Verify Folder Is There In PHP
How To Check Directory Exists On Website Verify Folder Is There In PHP
Post Description:
Post Tags: how, to, check, directory, exists, on, website, verify, folder, is, there, in, php
This Post Has Been Viewed 479 Times Since Sat Mar 01, 2008 1:12 pm Posted By php tutorial with 2 replies
Next Post »» how to get file permission in php getting files permission
Post Description:
Post Tags: how, to, check, directory, exists, on, website, verify, folder, is, there, in, php
This Post Has Been Viewed 479 Times Since Sat Mar 01, 2008 1:12 pm Posted By php tutorial with 2 replies
Next Post »» how to get file permission in php getting files permission
| How To Check Directory Exists On Website Verify Folder Is There In PHP |
how can i very check or verify if a directory is in my website? for example, i want to check with my php script to know if there is a folder or a directory if so i want to tell the user that that directory still exists..??
Leave Your Comments [ dejar commentarios ]
Comments and replies About How To Check Directory Exists On Website Verify Folder Is There In PHP
:: 1 :: #43779 - Reply By hostman On Sat Mar 01, 2008 1:14 pm
you can use the is_dir() function in php
lets say you want to check if the intsall/ directory still exists, you can write this php code:
lets say you want to check if the intsall/ directory still exists, you can write this php code:
<?
if (is_dir('install/')) {
$InstallError = "Your Install Directory Still Exists, Please Remove Immediately";
}
?>
if (is_dir('install/')) {
$InstallError = "Your Install Directory Still Exists, Please Remove Immediately";
}
?>
:: 2 :: #67337 - Reply By ali On Tue Aug 19, 2008 10:13 pm
globalguideline

