Re: Help on g_spwan_async
"Bill Nalen" <[email protected]>
| Newsgroups | gmane.comp.video.gimp.windows.devel |
|---|---|
| Message-ID | <OFA74B13C2.93FCDEFC-ON85256C76.005F3CC6-85256C76.005F67B9@towers.com> |
Harring wrote: >rm_cmd = "deltree /Y" and path= "I:\somepath\somedir" > When I run the command on windowze, I can see the DOS console windows poping >up and desapearing; however, the directory never gets deleted. You can't use \ in the path. And you can't have spaces either. This is because the command line is parsed like a string in C where the \ means an escape code. I would think I:/somepath/somedir where the path and dir have ~1 or something in them would work. Bill