0

我正在将程序从 Batch 转换为 Python。这是我认为我可以翻译批次的方法

%VBM% 共享文件夹添加 %VMNAME% --name "LogDir" --hostpath %LogDir%

进入:

os.execlp(VBM, 'sharedfolder', 'add', VMNAME, '--name', "LogDir",'--hostpath', LogDir)

我的问题:

  1. 考虑到 VBM、VMNAME 和 LogDir 是在我的脚本中预先声明的变量,我的翻译是否正确?
  2. 我可以用变量表示路径字符串吗,例如 VBM
  3. 做上述任何事情的更好方法是什么?
4

1 回答 1

0

我决定继续使用 subprocess.call() 并且它有效。

于 2013-07-10T22:02:33.850 回答