Python: Lock directory
问题 AFAIK this code can be used to lock a directory: class LockDirectory(object): def __init__(self, directory): assert os.path.exists(directory) self.directory = directory def __enter__(self): self.dir_fd = os.open(self.directory, os.O_RDONLY) try: fcntl.flock(self.dir_fd, fcntl.LOCK_EX | fcntl.LOCK_NB) except IOError as ex: if ex.errno != errno.EAGAIN: raise raise Exception('Somebody else is locking %r - quitting.' % self.directory) def __exit__(self, exc_type, exc_val, exc_tb): self.dir_fd