/**
  * Alias of {@link FileSystemObject::isWritable()}.
  * Check whether the file or directory exists and is writable.
  *
  * @return bool True if the file or directory exists and is writable, false otherwise.
  * False will also be returned if the path was invalid.
  */
 public function isWriteable()
 {
     return FilesystemObjectHelper::isWriteable($this);
 }