ists()函数总是返回false的解决⽅案如下⾯所⽰,如果我们⽤file的readline或readlines,在每⼀⾏后⾯都有⼀个\n回车符
直接ists(readline)时总会返回false
>>> from os.path import exists
>>> exists('dog.png')
True
>>> exists('dog.png\n')
False
使⽤item.strip('\n') #前⾯的item为我定义的变量
去掉后再传递给ists(item) 就OK了。
补充:当ists(path)的path中包含有空格时返回结果为False的解决⽅案
之前有个问题⼀直没有解决,当路径中或⽂件名中存在空格时,⽤ists(path)判断是否存在时,都会返回False. 百思不得其解. 今天在⽤ipython偶到想到想了解⼀下到底是什么原因?
事实上,当⽤input()接收path输⼊时,path中有空格时,⽣成的str是不⼀样的. 如下:
In [4]: path = input('请将⽂件拖⼊:')
请将⽂件拖⼊:"C:\Users xxxx\Desktop\filename "
In [5]: path
Out[5]: '"C:\\Users\ xxxx\\Desktop\\filename "'
In [6]: path1 = input('请将⽂件拖⼊:')
请将⽂件拖⼊:C:\Users xxxx\
In [7]: path1
Out[7]: 'C:\\Users\ xxxx\\Desktop\\'
In [8]: ists(path)
Out[8]: False
In [9]: ists(path1)
Out[9]: True
很明显,带有space时⽣了的str多了⼀层""字符串,故将多余的""去掉应该就可以了.以下为验证实例
In [10]: path2 = place('\"', '')
In [11]: path2
Out[11]: 'C:\\Users\ xxxx\\Desktop\\filename '
In [12]: ists(path2)
Out[12]: True
当前读取⼿机存储空间的⽂件时,当⼿机root⽬录中存在还中⽂或带空格的⽂件/⽂件夹时(如下图),就会出错.
⼀般这时为了要读出这些⽂件夹,⼀般的操作为:
In [23]: cmd = 'adb shell ls /sdcard/'
In [24]: file_list = os.popen(cmd).readlines()
---------------------------------------------------------------------------
python教程字符串函数
UnicodeDecodeError            Traceback (most recent call last)
<ipython-input-24-b7ae01065f81> in <module>
----> 1 file_list = os.popen(cmd).readlines()
UnicodeDecodeError: 'gbk' codec can't decode byte 0xae in position 10: illegal multibyte sequence
⼀般会报以上的错误或是不报错,但是中⽂⽂件/⽂件名可能为乱码,从以下的help(os.popen)可以了解后,os.popen()也是不能设置encode⽅式的,⽆解哈.
In [25]: help(os.open)
Help on built-in function open in module nt:
open(path, flags, mode=511, *, dir_fd=None)
Open a file for low level IO. Returns a file descriptor (integer).
If dir_fd is not None, it should be a file descriptor open to a directory,
and path should be relative; path will then be relative to that directory.
dir_fd may not be implemented on your platform.
If it is unavailable, using it will raise a NotImplementedError.
所以⼜回到之前写的⼀篇⽂章上,要⽤subprocess.run()全⾯替换掉os.system/os.popen,这样就可以解决这些问题了.
In [27]: cmd = 'adb shell ls /sdcard/'
In [28]: file_list = subprocess.run(cmd, capture_output=True, encoding='utf-8', shell=True).stdout.
...: splitlines()
In [29]: file_list[0:3]
Out[29]: ['0000', '00新⽂件夹', '00新⽂件夹 test']
故上两个困扰了很久的问题,终于到了解决⽅案,开⼼⼀下
以上为个⼈经验,希望能给⼤家⼀个参考,也希望⼤家多多⽀持。如有错误或未考虑完全的地⽅,望不吝赐教。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。