downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

DirectoryIterator::key> <DirectoryIterator::isReadable
Last updated: Fri, 06 Nov 2009

view this page in

DirectoryIterator::isWritable

(PHP 5 <= 5.1.1)

DirectoryIterator::isWritableDetermine if current DirectoryIterator item can be written to

Description

public bool DirectoryIterator::isWritable ( void )

Determines if the current DirectoryIterator item is writable.

Parameters

This function has no parameters.

Return Values

Returns TRUE if the file/directory is writable, otherwise FALSE

Examples

Example #1 DirectoryIterator::isWritable example

This example lists the files and directories which can be opened for writing in the directory containing the script.

<?php
$iterator 
= new DirectoryIterator(dirname(__FILE__));
foreach (
$iterator as $fileinfo) {
    if (
$fileinfo->isWritable()) {
        echo 
$fileinfo->getFilename() . "\n";
    }
}
?>

The above example will output something similar to:

apples.txt
bananas.html
pears

See Also



add a note add a note User Contributed Notes
DirectoryIterator::isWritable
There are no user contributed notes for this page.

DirectoryIterator::key> <DirectoryIterator::isReadable
Last updated: Fri, 06 Nov 2009
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites