os.system commands in CGI on IIS?
Jason Orendorff
jason at jorendorff.com
Wed Dec 19 17:18:18 EST 2001
More information about the Python-list mailing list
Wed Dec 19 17:18:18 EST 2001
- Previous message (by thread): os.system commands in CGI on IIS?
- Next message (by thread): os.system commands in CGI on IIS?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
> os.system("copy c:\a.txt c:\b.txt")
Try this:
os.system("copy c:\\a.txt c:\\b.txt")
As in C, Java, or Perl,
\a is a beep; \b is a backspace; and \\ is a backslash.
## Jason Orendorff http://www.jorendorff.com/
- Previous message (by thread): os.system commands in CGI on IIS?
- Next message (by thread): os.system commands in CGI on IIS?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list