一个简单的递归求目录的程序遇到的问题

import os

从某个目录下包含某字符的py文件

file_list = []
def find_hello(parent_dir,file_name):
file_abspath = os.path.join(parent_dir,file_name)#当前正在处理的文件或者目录的绝对路径
if os.path.isdir(file_abspath):#判断当前文件是否为目录
for f in os.listdir(file_abspath):
find_hello(file_abspath,f)
else:
if file_abspath.endswith(‘.py’):
if read_and_finf_hello(file_abspath):
file_list.append(file_abspath)

def read_and_finf_hello(py_file):
flag = False
f = open(py_file)
while True:
line = f.readline()
if line == ”:
break
elif “hello” in line:
flag = True
break
f.close()
return flag
find_hello(r’C:\Users\ywh\Desktop\’,’py’)
print(file_list)
遇到的问题主要有:
1,反斜杠的的转义符引起的
解决方案:1 、使用\代替 ,2、使用/
2.编码错误,UnicodeDecodeError: ‘gbk’ codec can’t decode byte 0xae in position 127: illegal multibyte sequence
解决方案:使用 f = open(py_file ,’r’, encoding = ‘utf-8’)
代替上述代码中的f = open(py_file)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值