小编典典

Python子进程Popen:为什么“ ls * .txt”不起作用?

python

我在看这个问题。

就我而言,我想做一个:

import subprocess
p = subprocess.Popen(['ls', 'folder/*.txt'], stdout=subprocess.PIPE, 
                                 stderr=subprocess.PIPE)

out, err = p.communicate()

现在,我可以在命令行中检查“ ls文件夹/*.txt”的工作原理,因为该文件夹包含许多.txt文件。

但是在Python(2.6)中,我得到了:

ls:无法访问*:没有此类文件或目录

我尝试做: r'folder/\*.txt' r"folder/\*.txt" r'folder/\\*.txt'
和其他变体,但似乎Popen根本不喜欢*角色。

还有其他逃生方法*吗?


阅读 215

收藏
2020-12-20

共1个答案

小编典典

*.txt被您的外壳file1.txt file2.txt ...自动展开。如果您引用*.txt,则不起作用:

[~] ls "*.py"                                                                  
ls: cannot access *.py: No such file or directory
[~] ls *.py                                                                    
file1.py  file2.py file3.py

如果要获取与模式匹配的文件,请使用glob

>>> import glob
>>> glob.glob('/etc/r*.conf')
['/etc/request-key.conf', '/etc/resolv.conf', '/etc/rc.conf']
2020-12-20