PHP code example of jaroslavtyc / flowmedia-dir-sync
1. Go to this page and download the library: Download jaroslavtyc/flowmedia-dir-sync library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
jaroslavtyc / flowmedia-dir-sync example snippets
namespace JaroslavTyc\DirSync;
use JaroslavTyc\DirSync\Actions\ActionInterface;
class DeleteDirAction implements ActionInterface {
public function getName() : string {
return '#DeleteDir';
}
public function runAction($context,string $workingDir, bool $dryRun) {
// some nasty destroying code
}
}
$actionsRunner = new ActionsRunner();
$actionsRunner->registerAction(new DeleteDirAction());
shell script
php ./bin/dirsync --dry-run
shell script
php ./bin/dirsync --json-config=json_config_file_for_dir_sync.json