Does anyone know how I can check to see if a directory is writeable in PHP?
The function is_writable
doesn't work for folders. (edit: It does work. See the accepted answer.)
Does anyone know how I can check to see if a directory is writeable in PHP?
The function is_writable
doesn't work for folders. (edit: It does work. See the accepted answer.)
According to the PHP manual is_writable should work fine on directories.
I've written a little script (I call it isWritable.php) that detects all directories in the same directory the script is in and writes to the page whether each directory is writable or not. Hope this helps.
this is the code :)