91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

在Python中使用os.path.exists()函數時返回false如何解決

發布時間:2021-03-15 17:12:01 來源:億速云 閱讀:679 作者:Leah 欄目:開發技術

在Python中使用os.path.exists()函數時返回false如何解決?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

如下面所示,如果我們用file的readline或readlines,在每一行后面都有一個\n回車符

直接os.path.exists(readline)時總會返回false

>>> from os.path import exists
>>> exists('dog.png')
True
>>> exists('dog.png\n')
False

使用item.strip('\n') #前面的item為我定義的變量

去掉后再傳遞給os.path.exists(item) 就OK了。

補充:當os.path.exists(path)的path中包含有空格時返回結果為False的解決方案

之前有個問題一直沒有解決, 當路徑中或文件名中存在空格時,用os.path.exists(path)判斷是否存在時,都會返回False. 百思不得其解. 今天在用ipython偶到想到想了解一下到底是什么原因?

事實上,當用input()接收path輸入時,path中有空格時,生成的str是不一樣的. 如下:

In [4]: path = input('請將文件拖入:')

請將文件拖入:"C:\Users\xxxxx\Desktop\filename with space.txt"

In [5]: path
Out[5]: '"C:\\Users\\xxxxx\\Desktop\\filename with space.txt"'
 
In [6]: path2 = input('請將文件拖入:')

請將文件拖入:C:\Users\xxxxx\Desktop\filenamewithspace.txt

In [7]: path2
Out[7]: 'C:\\Users\\xxxxx\\Desktop\\filenamewithspace.txt'
 
In [8]: os.path.exists(path)
Out[8]: False
 
In [9]: os.path.exists(path2)
Out[9]: True

很明顯,帶有space時生了的str多了一層""字符串,故將多余的""去掉應該就可以了.以下為驗證實例

In [10]: path3 = path.replace('\"', '')
 
In [11]: path3
Out[11]: 'C:\\Users\\xxxxx\\Desktop\\filename with space.txt'
 
In [12]: os.path.exists(path3)
Out[12]: True

當前讀取手機存儲空間的文件時,當手機root目錄中存在還中文或帶空格的文件/文件夾時(如下圖),就會出錯.

在Python中使用os.path.exists()函數時返回false如何解決

一般這時為了要讀出這些文件夾,一般的操作為:

In [23]: cmd = 'adb shell ls /sdcard/'
 
In [24]: file_list = os.popen(cmd).readlines()
---------------------------------------------------------------------------
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']

關于在Python中使用os.path.exists()函數時返回false如何解決問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

汉中市| 石台县| 沁阳市| 三门县| 周至县| 久治县| 班玛县| 武平县| 铁岭市| 西乡县| 邵武市| 南华县| 开化县| 甘孜县| 徐州市| 大理市| 深泽县| 南漳县| 望谟县| 长武县| 巴林右旗| 九龙坡区| 依安县| 德安县| 武定县| 隆子县| 黄平县| 淅川县| 铁岭市| 荃湾区| 称多县| 罗田县| 外汇| 陇西县| 百色市| 涪陵区| 全椒县| 曲周县| 岳池县| 磐石市| 彭州市|