unlink()方法删除(多个删除)的文件路径。 如果路径是一个目录,将引发 OSError。remove()函数取消链接的名字在Unix名称。
语法
以下是 unlink() 方法的语法:
os.unlink(path)
参数
-
path -- 这是被删除路径
返回值
此方法不返回任何值。
示例
下面的例子显示 unlink() 方法的使用。
# !/usr/bin/python3 import os, sys os.chdir("d:\\tmp") # listing directories print ("The dir is: %s" %os.listdir(os.getcwd())) os.unlink("foo.txt") # listing directories after removing path print ("The dir after removal of path : %s" %os.listdir(os.getcwd()))
当我们运行上面的程序,它会产生以下结果:
The dir is: ['Applicationdocs.docx', 'book.zip', 'foo.txt', 'Java Multiple Inheritance.html', 'Java Multiple Inheritance_files', 'java.ppt', 'python2'] The dir after removal of path : ['Applicationdocs.docx', 'book.zip', 'Java Multiple Inheritance.html', 'Java Multiple Inheritance_files', 'java.ppt', 'python2']