我正在编写一个运行在文件夹结构中的备份脚本,并复制自上次运行以来已更改的所有文件。我可以通过文件检测修改和创作。属性(使用getmtime
和getctime
)但我还需要能够检测文件是否已被移动。有没有一种简单的方法可以实现这一点,而无需记录整个文件结构并对每次更新进行比较?
请注意,这只会在 Windows系统上使用。
编辑:如果可能,我想避免使用外部库。
答案 0 :(得分:2)
通过使用E.G.,watchdog library:
,您可以运行监视父文件夹以进行任何更改的守护程序import sys
import time
import logging
from watchdog.observers import Observer
from watchdog.events import LoggingEventHandler
if __name__ == "__main__":
logging.basicConfig(level=logging.INFO,
format='%(asctime)s - %(message)s',
datefmt='%Y-%m-%d %H:%M:%S')
path = sys.argv[1] if len(sys.argv) > 1 else '.'
event_handler = LoggingEventHandler()
observer = Observer()
observer.schedule(event_handler, path, recursive=True)
observer.start()
try:
while True:
time.sleep(1)
except KeyboardInterrupt:
observer.stop()
observer.join()