Python on Windows: IOError: [Errno 2] No such file or directory

Python on Windows: IOError: [Errno 2] No such file or directory

首先,我对 Python 和一般编程还很陌生。

目前我正在尝试创建一个脚本,该脚本将根据黑名单中的行删除文件夹中具有随机名称、扩展名和内容的所有文件(必须在文件内容中进行搜索)。

这是一个代码:

import os

black_list = [line for line in open("C:/path/to/blacklist.txt")]

for filename in os.listdir("C:/path/to/files/"):
    content = open(filename).read()
    if any(line in content for line in black_list):
        os.remove(filename)

我收到这个错误:

IOError: [Errno 2] No such file or directory: 'first_file_from_the_folder'

你能帮帮我吗?

提前致谢!

os.listdir returns 文件名,不完整路径。

PATH = "C:/path/to/files/"
for filename in os.listdir(PATH):
    content = open(os.path.join(PATH, filename)).read()

这里,os.path.join用于合并路径和文件名。

如果要删除文件,应该传递文件的整个路径。

import os

black_list = [line for line in open("C:/path/to/blacklist.txt")]
path = "C:/path/to/files/"
for filename in os.listdir(path):
    content = open(path+ filename).read()
    if any(line in content for line in black_list):
        os.remove(path + filename)