iT邦幫忙

2018 iT 邦幫忙鐵人賽
DAY 11
0
Data Technology

Python自習手札系列 第 11

Python自習手札(11/30): 刪除資料夾和資料夾以下的檔案(路徑或資料夾含空白鍵值)

  • 分享至 

  • xImage
  •  

===刪除的路徑或資料夾名稱含空白===

import os
folder = "%APPDATA%\\Adobe\\Flash*"
folder = "%APPDATA%\\Macromedia"
folder = "%SystemRoot%\\system32\\Macromed"
folder = "%SystemRoot%\\SysWOW64\\Macromed"

command = "rmdir /s /q \"%s\""
command = command % folder
 
print command
  
result = os.system(command)
 
if result == 0:
    print "刪除檔案成功"
else:
    print "刪除檔案沒成功"

===Flash安裝與新增的資料夾位置===
C:\Windows\System32\Macromed
C:\Windows\SysWOW64\Macromed
C:\Users\username\AppData\Roaming\Adobe
C:\Users\username\AppData\Roaming\Macromedia


上一篇
Python自習手札(10/30): 刪除資料夾和資料夾以下的檔案
下一篇
Python自習手札(12/30):新增刪除登錄檔(註冊表Registry)
系列文
Python自習手札31
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言