1

我正在尝试find在 Python 中使用 Unix 命令并且无法输入pwd`pwd`也没有工作。

import commands
import os

f = raw_input('Enter name of the file: ')
fh = open(f, 'r')

prevdir = os.getcwd()
files = fh.readlines()

for line in files:
    os.chdir(line)
    print commands.getoutput('find `pwd` -name "*.txt"')
    # print commands.getoutput('find \`pwd\` -name "*.txt"')
4

1 回答 1

1

只是把它作为替代品。

假设您只想在一个目录中搜索(即不递归),我宁愿尝试使用glob(假设行以 结尾/,否则需要将其添加到字符串中):

import glob
for line in files:
    print(glob.glob(line+"*.txt"))

如果递归(Python3.5>):

import glob
for line in files:
    print(glob.glob(line+"**/*.txt"),recursive=True)
于 2016-04-22T22:59:50.697 回答