Exemple #1
0
 /**
  * Get extended attributes for the path
  *
  * @param string $path
  * @param string $attribute attribute to get the info
  * @param mixed $value
  * @return string the attribute value
  */
 public function setAttribute($path, $attribute, $value)
 {
     $this->connect();
     if ($attribute === 'system.dos_attr.mode' and is_int($value)) {
         $value = '0x' . dechex($value);
     }
     return $this->state->setxattr($this->buildUrl($path), $attribute, $value);
 }