gpt4 book ai didi

python - 从目录中删除不含特定单词的文本文件

转载 作者:行者123 更新时间:2023-12-01 01:55:01 25 4
gpt4 key购买 nike

我有一个目录,其中包含约 2200 个文本文件。我需要删除任何不包含我定义的特定单词的文本文件。有人可以看看这段代码并就如何让它工作提出建议吗?现在,当我运行它时,它说找不到目录“C”。

此外,我想确保该目录中的每个文件都运行它。我需要包含下一个功能吗?

import os

path = r'C:\Users\user\Desktop\AFL codes to test'
words = ['buy', 'sell']

for root, dirs, files in os.walk(path):
for file in path:
if not any(words in file for words in words):
os.remove(file)

此外,这是完整的回溯:

runfile('C:/Users/user/.spyder-py3/DELETE FILES THAT DONT CONTAIN CERTAIN WORDS.py', wdir='C:/Users/user/.spyder-py3')
Traceback (most recent call last):

File "<ipython-input-23-dbc80e182b2b>", line 1, in <module>
runfile('C:/Users/user/.spyder-py3/DELETE FILES THAT DONT CONTAIN CERTAIN WORDS.py', wdir='C:/Users/user/.spyder-py3')

File "C:\Users\user\Anaconda31\lib\site-packages\spyder\utils\site\sitecustomize.py", line 705, in runfile
execfile(filename, namespace)

File "C:\Users\user\Anaconda31\lib\site-packages\spyder\utils\site\sitecustomize.py", line 102, in execfile
exec(compile(f.read(), filename, 'exec'), namespace)

File "C:/Users/user/.spyder-py3/DELETE FILES THAT DONT CONTAIN CERTAIN WORDS.py", line 9, in <module>
os.remove(file)

FileNotFoundError: [WinError 2] The system cannot find the file specified: 'C'

This is the error after trying shutil.rmtree

runfile('C:/Users/user/.spyder-py3/DELETE FILES THAT DONT CONTAIN CERTAIN WORDS.py', wdir='C:/Users/user/.spyder-py3')
Traceback (most recent call last):

File "<ipython-input-16-dbc80e182b2b>", line 1, in <module>
runfile('C:/Users/user/.spyder-py3/DELETE FILES THAT DONT CONTAIN CERTAIN WORDS.py', wdir='C:/Users/user/.spyder-py3')

File "C:\Users\user\Anaconda31\lib\site-packages\spyder\utils\site\sitecustomize.py", line 705, in runfile
execfile(filename, namespace)

File "C:\Users\user\Anaconda31\lib\site-packages\spyder\utils\site\sitecustomize.py", line 102, in execfile
exec(compile(f.read(), filename, 'exec'), namespace)

File "C:/Users/user/.spyder-py3/DELETE FILES THAT DONT CONTAIN CERTAIN WORDS.py", line 12, in <module>
shutil.rmtree(full_path)

File "C:\Users\user\Anaconda31\lib\shutil.py", line 494, in rmtree
return _rmtree_unsafe(path, onerror)

File "C:\Users\user\Anaconda31\lib\shutil.py", line 376, in _rmtree_unsafe
onerror(os.listdir, path, sys.exc_info())

File "C:\Users\user\Anaconda31\lib\shutil.py", line 374, in _rmtree_unsafe
names = os.listdir(path)

NotADirectoryError: [WinError 267] The directory name is invalid: 'C:/Users/user/Desktop/AFL codes to test/newfile1.txt'

最佳答案

您应该用常规斜杠替换反斜杠。

path = r'C:\Users\user\Desktop\AFL codes to test'

应该是

path = 'C:/Users/user/Desktop/AFL codes to test'

编辑:这是应该让您继续前进的完整代码:

import os

path = 'C:/Users/user/Desktop/AFL codes to test'
words = ['buy', 'sell']

files = os.listdir(path)
for each_file in files:
full_path = "%s/%s" % (path, each_file)
each_file_content = open(full_path, 'r', encoding="utf-8").read()
if not any(word in each_file_content for word in words):
os.unlink(full_path)

关于python - 从目录中删除不含特定单词的文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50308425/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com