if os.path.islink(file_path): os.remove(file_path) elif os.path.isdir(file_path): import shutil shutil.rmtree(file_path) else: # It is a ...
確定! 回上一頁