我正在查看this问题。
就我而言,我想做一个:
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
根本不喜欢*
字符。
还有其他方法可以逃避*
吗?
答案 0 :(得分:9)
*.txt
会自动将您的shell扩展为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']
答案 1 :(得分:6)
您可以将参数shell传递给True。它将允许通配。
import subprocess
p = subprocess.Popen('ls folder/*.txt',
shell=True,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
out, err = p.communicate()