Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的程序中,经过一些操作后会出现一个目录。但是要执行下一个命令,我必须等到该目录出现。我可以提供目录路径和目录名称(适用于 Ubuntu)。我想等到那个目录出现。如何使用 Python 代码(在 Ubuntu 中)做到这一点?
在 *nix 中,您可以利用inotify为您提供事件驱动的文件系统监控。
目前我(和谷歌)所知的最流行的 python 库是pinotify。
while True: if os.path.isdir("dir_path"): break time.sleep(5)