Example: python delete file import os import shutil if os.path.exists("demofile.txt"): os.remove("demofile.txt") # one file at a time ...
確定! 回上一頁