您的位置 首页 知识分享

如何使用 subprocess.call 执行包含空格的文件名命令?

如何使用 subprocess.call 执行 命令,即使文件名中有空格 在 linux 环境中,可以使用 c…

如何使用 subprocess.call 执行包含空格的文件名命令?

如何使用 subprocess.call 执行 命令,即使文件名中有空格

在 linux 环境中,可以使用 cat 命令将具有空格的文件名合并。例如,以下命令将 1 1.txt 和 1 2.txt 合并到 1 3.txt 中:

cat './temp/1 1.txt' './temp/1 2.txt' > './temp/1 3.txt'
登录后复制

使用 中的 subprocess.call 模块可以执行 linux 命令。但是,当文件名中有空格时,需要进行特殊处理。

问题代码

你提供的代码如下:

import subprocess  cmdu = 'cat●"./temp/1 1.txt"●"./temp/1 2.txt"●>●"./temp/1 3.txt"' subprocess.call(cmdu.split('●'))
登录后复制

此代码将命令拆分为以下部分:

['cat', '"./temp/1 1.txt"', '"./temp/1 2.txt"', '>', '"./temp/1 3.txt"']
登录后复制

但是,因为”>” 符号也被拆分,因此该命令将无法正确执行。

解决方案

要解决此问题,可以使用 subprocess.call 的 shell 参数。此参数指定是否应使用 shell 来执行命令。在使用 shell(shell=true)时,可以使用管道符号(|)将命令连接起来。

以下 python 代码将正确执行该命令:

import subprocess  cmdU = ['cat', './TEMP/1 1.txt', './TEMP/1 2.txt', '>', './TEMP/1 3.txt'] subprocess.call(cmdU, shell=True)
登录后复制

以上就是如何使用 subprocess.call 执行包含空格的文件名命令?的详细内容,更多请关注php中文网其它相关文章!

本文来自网络,不代表甲倪知识立场,转载请注明出处:http://www.spjiani.cn/wp/4402.html

作者: nijia

发表评论

您的电子邮箱地址不会被公开。

联系我们

联系我们

0898-88881688

在线咨询: QQ交谈

邮箱: email@wangzhan.com

工作时间:周一至周五,9:00-17:30,节假日休息

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

关注微博
返回顶部