Python os.remove() 方法

返回上一级

os.remove() 方法用于删除指定路径的文件

如果指定的路径是一个目录,将抛出 OSError

导入模块

import os

语法

os.remove(path)

参数

参数 说明
path 要移除的文件路径

返回值

范例

下面的范例演示了 os.remove() 方法的简单使用

#!/usr/bin/python
# -*- coding: UTF-8 -*-

import os, sys

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

# 移除
os.remove("demo.rst")

# 移除后列出目录
print "移除后 : %s" %os.listdir(os.getcwd())

运行以上 Python 代码,输出结果如下

$ python main.py 
目录为: ['demo.txt', 'demo.rst', 'newdir2', 'main.py', 'demo.py']
移除后 : ['demo.txt', 'newdir2', 'main.py', 'demo.py']

返回上一级

Python2 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.