您好,登錄后才能下訂單哦!
def delete_file_in_dir(dir):
if not os.path.exists(dir):
return 1
try:
for i in os.listdir(dir):
path_way = os.path.join(dir,i)
#如果是文件就刪除
if os.path.isfile(path_way):
os.remove(path_way)
else:
#如果是文件夾調用方法
delete_file_in_dir(path_way)
else:
#刪除目錄
os.rmdir(dir)
except:
return 1
return 0
def shutildome():
import shutil
filelist = []
rootdir = "D:\\TOOL\\PycharmProjects\\python\\cz\\815\\2018\\10\\20w"
filelist = os.listdir(rootdir)
for f in filelist:
filepath = os.path.join(rootdir, f)
if os.path.isfile(filepath):
os.remove(filepath)
print(filepath + " removed!")
elif os.path.isdir(filepath):
shutil.rmtree(filepath, True)
print("dir " + filepath + " removed!")
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。