phpgt/sync

There is no license information available for the latest version (v1.3.0) of this package.

Synchronise two directories.

Maintainers

Details

github.com/PhpGt/Sync

Source

Issues

Fund package maintenance!
PhpGt

v1.3.0 2023-07-07 16:49 UTC

README

rsync is the tool of choice for ensuring that two directories have the same content, but is only present by default on Unix systems. This repository provides simple recursive directory synchronisation in plain PHP, compatible on Linux, Mac and Windows.

Build status Code quality Code coverage Current version PHP.Gt/Sync documentation

Example usage

$source = "/var/www/example.com";
$destination = "/var/backup/example.com";

try {
	$sync = new DirectorySync($source, $destination);
	$sync->exec(DirectorySync::COMPARE_FILEMTIME);
}
catch(SyncException $exception) {
	fwrite(STDERR, "Error performing sync: " . $exception->getMessage());
	exit(1);
}

echo "Sync complete!" . PHP_EOL;
echo "Changed: " . count($sync->getCopiedFilesList());
echo "Deleted: " . count($sync->getDeletedFilesList());
echo "Skipped: " . count($sync->getSkippedFilesList());

Features

  • Cross-platform compatible directory synchronisation (Linux, Windows, Mac).
  • Selective sync through glob matches (only sync js files within script directory with /script/**/*.js).
  • Get statistics of copied/deleted/skipped files after sync execution.
  • Low memory footprint.