in reply to How do I open a file in a path that has spaces in the name?
Hi,
I had the problem too but grinder gave me a hint:
" It depends on the environment" and in Windows/DOS, directories with spaces are between quotes
ex: c:\>dir "Program Files"
So, in windows, escape space chars like this:
(supposing you have a "test" directory in c:\
$dir = "c:/test/\"Test Directory\"";
mkdir ($dir);