vote up 2 vote down star

I'm 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.

When I try to call the command, I'm getting an error: The input line is too long.

I'm guessing there's a 255 character limit (its built using a C system call, but I couldn't find the limitations on that either).

I tried changing the directory with os.chdir() to reduce the folder trail lengths, but when I try using os.system() with "..\folder\filename" it apparently can't handle relative path names. Is there any way to get around this limit or get it to recognize relative paths?

flag

4 Answers

vote up 7 vote down check

You should use the subprocess module instead. See this little doc for how to rewrite os.system calls to use subprocess.

link|flag
This works, thanks a ton! – Tony Trozzo Mar 25 at 18:40
vote up 1 vote down

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.

link|flag
vote up 2 vote down

Make sure when you're using '\' in your strings that they're being properly escaped.

Python uses the '\' as the escape character, so the string "..\folder\filename" evaluates to "..folderfilename" since an escaped f is still an f.

You probably want to use

r"..\folder\filename"

or

"..\\folder\\filename"
link|flag
yeah, I'm using raw strings, good catch for me not mentioning that. – Tony Trozzo Mar 25 at 18:23
vote up 4 vote down

You should use subprocess instead of os.system.

subprocess has the advantage of being able to change the directory for you:

import subprocess
my_cwd = r"..\folder\"
my_process = subprocess.Popen(["command name", "option 1", "option 2"], cwd=my_cwd)
my_process.wait() # wait for process to end
if my_process.returncode != 0:
    print "Something went wrong!"

The subprocess module contains some helper functions as well if the above looks a bit verbose.

link|flag
Much appreciated. – Tony Trozzo Mar 25 at 18:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.