Beispiel #1
0
 /**
  * Copy a file to a new location.
  *
  * @param string $path
  * @param string $target
  * @return bool 
  * @static 
  */
 public static function copy($path, $target)
 {
     return \October\Rain\Filesystem\Filesystem::copy($path, $target);
 }