File Directory Php



Is the file writable: is_writable()


$file = "test.txt";
outputFileTestInfo( $file );
function outputFileTestInfo( $f ){
   if ( ! file_exists( $f ) ){
       print "$f does not exist
";
      return;
   }
   print "$f is ".(is_writable( $f )?"":"not ")."writable
";
}
?>