Re: IDE and files with spaces in path name
- Posted by wolfgang fritz <wolfritz at king.igs.net> Jan 11, 2001
- 606 views
.. how about using current_dir() and chdir(), in your program segment ? example: sequence current_path,odd_path current_path=current_dir() odd_path="C:\\ab cd\\" atom go,there,now -- without error checkinggo=chdir(odd_path) there=system_exec("exw yourprogram.exw",0) now=chdir(current_path) ---- now check for ex.err ..if I understand your 'flow', this worked OK for me Wolf
go=chdir(odd_path)
there=system_exec("exw yourprogram.exw",0)
now=chdir(current_path)
---- now check for ex.err
..if I understand your 'flow', this worked OK for me
Wolf

