Re: Exec a program on Windows that contains ( ) in the filename
- From: Ralf Fassel <ralfixx@xxxxxx>
- Date: Fri, 22 Sep 2006 21:18:53 +0200
* joiosoy@xxxxxxxxx
| exec c:/Tcl/bin/a\(b\)/test.bat
| 'c:\Tcl\bin\a' is not recognized as an internal or external command,
| operable program or batch file.
--<snip-snip>--
| >From the Windows command line:
|
| C:\Documents and Settings\user\Desktop>c:\Tcl\bin\a(b)\test.bat
| 'c:\Tcl\bin\a' is not recognized as an internal or external command,
| operable program or batch file.
This sounds as if it is the windows command line which has problems
here understanding its own file system.
exec \"c:/Tcl/bin/a\(b\)/test.bat\"
(yes, make the double quotes part of the program name), or even
exec cmd /c \"c:/Tcl/bin/a\(b\)/test.bat\"
?
R'
.
- Follow-Ups:
- References:
- Prev by Date: Exec a program on Windows that contains ( ) in the filename
- Next by Date: Re: TreeCtrl2.1 or Latest release feature list
- Previous by thread: Exec a program on Windows that contains ( ) in the filename
- Next by thread: Re: Exec a program on Windows that contains ( ) in the filename
- Index(es):
Relevant Pages
|