Navigation :

Home
Source code
Tutorials
RSS feeds
Articles
Wordpress plugins
Blog
Books
Software
Downloads
Hosting
manuals
Script directory
Training
Our Links




Site Sponsors :

Bookmark :

Links :

gambling sites
wwwstores
domain names

Downloads :

Misc :

Webmaster Resources
Only PHP
ScriptSearch.com
Scripts.com - Get the best scripts NOW!
AndreaPHP Programming

Valid XHTML 1.0 Transitional


Valid CSS!


File exists with PHP and Java

File exists with PHP and Java

<?php
//file to be found
$fp = new Java("java.io.File", "d:/lotto.txt");
//check if file exists
if($fp−>exists())
{
echo "The file ". $fp−>getAbsolutePath() . " is ". $fp−>length(). " bytes";
}
//file does not exist
else
{
echo "The file " . $fp−>getAbsolutePath() . " does not exist";
}
?>