WP_Filesystem_Base::is_writable( string $path )

Checks if a file or directory is writable.


Parameters

$path

(Required) Path to file or directory.


Return

(bool) Whether $path is writable.


Source

File: wp-admin/includes/class-wp-filesystem-base.php

	public function is_writable( $file ) {
		return false;
	}

Changelog

Changelog
Version Description
2.5.0 Introduced.