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.
我希望编写一个 python 脚本(要在 Linux 中运行),它的要求之一是删除一个目录。问题是该目录非常大,需要几分钟才能完成。
问题:
可行吗?
提前致谢
满足这些要求的一件事是守护进程。fork 然后从主进程返回。这样,删除调用可以尽可能多地阻塞。
doRemove() fork() if child call huge remove else return