Python 3 – os.remove() 方法

Python 3 – os.remove() 方法

描述

方法 remove() 可以删除指定的文件路径。如果该路径是一个目录,将会抛出 OSError 异常。

语法

下面是 remove() 方法的语法 −

os.remove(path)

参数

path − 要删除的路径。

返回值

此方法不返回任何值。

示例

以下示例演示了如何使用 remove() 方法。

# !/usr/bin/python3
import os, sys
os.chdir("d:\\tmp")

# 列出目录
print ("The dir is: %s" %os.listdir(os.getcwd()))

# 删除文件
os.remove("test.java")

# 删除路径后列出目录
print ("The dir after removal of path : %s" %os.listdir(os.getcwd()))

结果

运行上述程序后,将产生以下结果 −

The dir is: [
   'Applicationdocs.docx', 'book.zip', 'foo.txt', 'home', 
   'Java Multiple Inheritance.htm', 'Java Multiple Inheritance_files', 
   'java.ppt', 'ParallelPortViewer', 'test.java'
]
The dir after removal of path : [
   'Applicationdocs.docx', 'book.zip', 'foo.txt', 'home', 
   'Java Multiple Inheritance.htm', 'Java Multiple Inheritance_files', 
   'java.ppt', 'ParallelPortViewer'
]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程