WP_Filesystem_SSH2::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-ssh2.php

	public function is_writable($file) {
		// PHP will base it's writable checks on system_user === file_owner, not ssh_user === file_owner
		return true;
	}

Changelog

Changelog
Version Description
2.7.0 Introduced.