我正在使用 django 视图,我使用tempfile.gettempdir()
.
我在那里写了一个 gzip 压缩的文本文件,然后在其他地方 scp 文件。当这些任务完成后,我尝试删除 temp_dir。
if os.path.exists( temp_dir ):
shutil.rmtree( temp_dir )
但是,有时我会收到此错误:
Operation not permitted: '/tmp/.ICE-unix'
任何想法这个错误意味着什么以及如何最好地处理这种情况?