Advanced directory tree synchronisation tool
Project description
© 2014-2019 Thomas Khyn © 2003-2015 Anand B Pillai
Advanced directory tree synchronisation tool
based on Python robocopier by Anand B Pillai
If you like dirsync and are looking for a way to thank me and/or encourage future development, here is my BTC or BCH donation address: 1EwENyR8RV6tMc1hsLTkPURtn5wJgaBfG9.
Usage
From the command line:
dirsync <sourcedir> <targetdir> [options]
From python:
from dirsync import sync sync(sourcedir, targetdir, action, **options)
Main Options
Chosing one option among the following ones is mandatory
- --diff, -d
Only report difference between sourcedir and targetdir
- --sync, -s
Synchronize content between sourcedir and targetdir
- --update, -u
Update existing content between sourcedir and targetdir
If you use one of the above options (e.g. sync) most of the time, you may consider defining the action option in a Configuration file parsed by dirsync.
Additional Options
- --verbose, -v
Provide verbose output
- --purge, -p
Purge files when synchronizing (does not purge by default)
- --force, -f
Force copying of files, by trying to change file permissions
- --twoway, -2
Update files in source directory from target directory (only updates target from source by default)
- --create, -c
Create target directory if it does not exist (By default, target directory should exist.)
- --ctime
Also takes into account the source file's creation time (Windows) or the source file's last metadata change (Unix)
- --content
Takes into account ONLY content of files. Synchronize ONLY different files. At two-way synchronization source files content have priority if destination and source are existed
- --ignore, -x patterns
Regex patterns to ignore
- --only, -o patterns
Regex patterns to include (exclude every other)
- --exclude, -e patterns
Regex patterns to exclude
- --include, -i patterns
Regex patterns to include (with precedence over excludes)
Configuration file
If you want to use predefined options all the time, or if you need specific options when ‘dirsyncing’ a specific source directory, dirsync looks for two configuration files, by order or priority (the last takes precedence):
~/.dirsync source/directory/.dirsync
The command line options always override the values defined in the configuration files.
The configuration files must have a defaults section, and the options are as defined above. The only exception is for the option action, which can take 3 values diff, sync or update.
Example config file:
[defaults] action = sync create = True
Custom logger
From python, you may not want to have the output sent to stdout. To do so, you can simply pass your custom logger via the logger keyword argument of the sync function:
sync(sourcedir, targetdir, action, logger=my_logger, **options)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file dirsync-2.2.4.tar.gz
.
File metadata
- Download URL: dirsync-2.2.4.tar.gz
- Upload date:
- Size: 11.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4f6bef8dc97e262c9f89c4086d6f70681ed42515bc3d9ca2650c28ccf8e07aea |
|
MD5 | 4318f910be9f21f1428d43e576a604d4 |
|
BLAKE2b-256 | fabed5d380d68d72fc79dcd47aaf365cb6b50ae05a4cdedfd2f16146e28e13e6 |