What to do with “The input line is too long” error message?

后端 未结 6 1148
悲哀的现实
悲哀的现实 2020-12-14 23:17

I am trying to use os.system() to call another program that takes an input and an output file. The command I use is ~250 characters due to the long folder names.

Wh

6条回答
  •  没有蜡笔的小新
    2020-12-15 00:10

    Assuming you're using windows, from the backslashes, you could write a .bat file from python and then os.system() on that. It's a hack.

提交回复
热议问题