4

我正在看这个问题。

就我而言,我想做一个:

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根本不喜欢这个*角色。

有没有其他的逃生方法*

4

2 回答 2

9

*.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']
于 2012-12-14T09:38:18.993 回答
8

您可以将参数 shell 传递给 True。它将允许通配符。

import subprocess
p = subprocess.Popen('ls folder/*.txt',
                     shell=True,
                     stdout=subprocess.PIPE, 
                     stderr=subprocess.PIPE)
out, err = p.communicate()
于 2012-12-14T09:45:37.120 回答