Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 331 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 331 Bytes

SafeCopy

A package to safely copy files from one place to another

Install

composer require dbseller/safe-copy

Usage

$safeCopy = new \DBSeller\SafeCopy\SafeCopy("/path/from", "/path/to");

// @throws Exception on error
$safeCopy->execute();

bin

vendor/bin/safe-copy /path/from /path/to