我有一个名为serial.dll. 该文件的内容是另一个文件的名称:
a-2ED1-7156.dll
我还在a-2ED1-7156.dll同一目录中调用了 1 个文件。
当我尝试通过读取文件名来检查文件是否存在时serial.dll:
f = open('serial.dll', 'r')
serials = f.read()
if os.path.exists(serials):
print("ok")
else:
print("no")
结果总是“不”。
但:
file = 'a-2ED1-7156.dll'
if os.path.exists(file):
print("ok")
else:
print("no")
总是给出正确的结果。
如何a-2ED1-7156.dll通过读取文件来检查文件是否存在serial.dll?
Update Try:
f = open('serial.dll', 'r')
lines = f.readline()
for line in lines:
if os.path.exists(line):
print('ok')
else:
print("no")
results error:
no
no
no
no
no
no
no
no
no
no
no
ok
no
no
no
no
智慧大石
沧海一幻觉
相关分类