gpt4 book ai didi

python - 初学者 : python subprocess. 调用数百个参数

转载 作者:太空宇宙 更新时间:2023-11-04 06:24:02 25 4
gpt4 key购买 nike

免责声明:我是 python 初学者,但有 Drupal 编程经验。

我有这个:

f = ['/path/1.jpg', '/path/2.jpg', '/path/3.jpg'] #less than 1500 files

我需要这样做

call(['c:/program files/ABBYY FineReader 10/finereader.exe'] + f)

但是,参数限制 (http://stackoverflow.com/questions/2381241/what-is-the-subprocess-popen-max-length-of-the-args-parameter) 为 32K 个字符,因此我需要先删除/path。我该如何继续,让 .exe 找到文件?

谢谢!

最佳答案

您应该将 cwd='/path/' 添加到您的 subprocess.call 的参数中。这会将可执行文件的工作目录更改为 '/path/'(但请注意,它不用于搜索可执行文件,因此仍然提供您的绝对路径)。

然后,假设它们都在同一路径中,您可以使用:

import os
f = [os.path.basename(x) for x in f]

关于python - 初学者 : python subprocess. 调用数百个参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9747408/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com