我正在尝试获取定期更改的文件的名称。 我正在使用看门狗这样做。
import time
from watchdog.observers import Observer
from watchdog.events import FileSystemEventHandler
timestr = time.strftime("%Y.%m.%d-%H.%M.%S")
class MyHandler(FileSystemEventHandler):
def on_modified(self, event):
change_log = open('change_log_' + timestr + '.txt', 'aw')
change_log.write('Time the file changed: ' + timestr + '\n')
change_log.close()
if __name__ == "__main__":
event_handler = MyHandler()
observer = Observer()
observer.schedule(event_handler, path='.', recursive=False)
observer.start()
try:
while True:
time.sleep(1)
except KeyboardInterrupt:
observer.stop()
observer.join()
由于某种原因,这会在“change_log”文件中打印出大约62行。这不是很有用。 我想要做的是打印更改的文件的名称,或将其存储在变量中以传递给我的其他模块。
答案 0 :(得分:1)
在您的示例中,如果您需要文件名,则需要将 'change_log_'
替换为 event.src_path
。有关详细信息,请参阅 official code。
您还可以看到我在打印输出中使用的 this answer 中的 event.src_path
。
答案 1 :(得分:0)
看起来发送给处理程序的事件对象包含您要搜索的信息: http://pythonhosted.org/watchdog/api.html#watchdog.events.FileSystemEvent
使用传递到src_path
子类处理程序方法的事件对象的FileSystemEvent
属性来获取文件名。