예제 #1
0
 public function touch($path, $mtime = null)
 {
     if (is_null($mtime)) {
         $tmpFile = OCP\Files::tmpFile();
         $this->archive->extractFile($path, $tmpFile);
         $this->archive->addfile($path, $tmpFile);
     } else {
         return false;
         //not supported
     }
 }