This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/python | |
# Dispatch - synchronize two folders, the "left" being the source and the "right" being the target. | |
# Synchronization works only left to right. | |
import os | |
import filecmp | |
import shutil | |
from stat import * | |
class Dispatch: |