Commit 3c7a1270 authored by Taylor Otwell's avatar Taylor Otwell

Added File::move and File::copy methods.

parent b41bba45
......@@ -68,6 +68,30 @@ class File {
if (static::exists($path)) @unlink($path);
}
/**
* Move a file to a new location.
*
* @param string $path
* @param string $target
* @return void
*/
public static function move($path, $target)
{
return rename($path, $target);
}
/**
* Copy a file to a new location.
*
* @param string $path
* @param string $target
* @return void
*/
public static function copy($path, $target)
{
return copy($path, $target);
}
/**
* Extract the file extension from a file path.
*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment