我使用的是django視圖,我使用tempfile.gettempdir()
創建了一個temp_dir。無法使用python刪除臨時文件
我在那裏寫一個gzip文本文件,然後在其他地方scp文件。當這些任務完成時,我嘗試刪除temp_dir。
if os.path.exists(temp_dir):
shutil.rmtree(temp_dir)
但是,有時我得到這個錯誤回:
Operation not permitted: '/tmp/.ICE-unix'
任何想法,這個錯誤是什麼手段,以及如何最好地處理這種情況呢?
......這是我們不應該以root身份運行的一個很好的理由! (微笑) – tdelaney