您好,登錄后才能下訂單哦!
因下載的視頻文件大多數含有視頻網站的url或者包含其他不要的字符串,用python自動修改。
目前缺點:
1,需要把.py放在目錄內運行
代碼如下:
import?os,?re while?True: ????keyword?=?input("請輸入你要刪除的字符串:") ????if?len(keyword)==0?or?keyword.isspace(): ????????print("字符串不能為空!") ????else: ????????break suffix?=?input("需要篩選的文件名后綴(Enter代表所有):") fileNames?=?os.listdir()??#獲取當前目錄下的所有文件 for?file?in?fileNames: ????check?=?os.path.join(os.path.abspath('.'),file) ????if?os.path.isfile(check): ????????if?len(suffix)==0?or?suffix.isspace(): ????????????if?keyword?in?file: ????????????????print(file,"?->?",file.replace(keyword,'')) ????????????????os.rename(file,file.replace(keyword,'')) ????????????else: ????????????????#用正則表達式匹配后綴名 ????????????????if?re.match('.+?\.'+suffix+'$',file)?!=?None?and?keyword?in?file: ????????????????????print(file,"?->?",file.replace(keyword,'')) ????????????????????os.rename(file,file.replace(keyword,''))
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。