Python os.remove() 方法
python os.remove() 方法
os.remove() 方法用于刪除指定路徑的文件。如果指定的路徑是一個(gè)目錄,將拋出oserror。
在unix, windows中有效
語(yǔ)法
remove()方法語(yǔ)法格式如下:
os.remove(path)
參數(shù)
- path -- 要移除的文件路徑
返回值
該方法沒(méi)有返回值
實(shí)例
以下實(shí)例演示了 remove() 方法的使用:
#!/usr/bin/python # -*- coding: utf-8 -*- import os, sys # 列出目錄 print "目錄為: %s" %os.listdir(os.getcwd()) # 移除 os.remove("aa.txt") # 移除后列出目錄 print "移除后 : %s" %os.listdir(os.getcwd())
執(zhí)行以上程序輸出結(jié)果為:
目錄為: [ 'a1.txt','aa.txt','resume.doc' ] 移除后 : [ 'a1.txt','resume.doc' ]
相關(guān)文章
- Python 循環(huán)語(yǔ)句
- Python while 循環(huán)語(yǔ)句
- Python break 語(yǔ)句
- Python 函數(shù)
- Python File 方法
- Python SMTP發(fā)送郵件
- Python 矩陣
- Python 隊(duì)列
- Python 哈希表
- Python 算法分析
- Python 遞歸
- Python 樹(shù)遍歷算法
- Python3 教程
- Python3 運(yùn)算符
- Python3 集合(Set)
- Python3 命名空間
- Python3 多線程
- Python3 XML 解析
- Python3 JSON 解析
- Python3 內(nèi)置函數(shù)