From: James Britt Date: 2004-12-19T06:16:13+09:00 Subject: Re: Loading configuration files in an OS-agnostic way Hal Fulton wrote: > > > Have you tried quoting the filename? I know that works for names with > blank spaces in them... e.g., > > copy "my file.txt" other.txt > > I wouldn't be surprised if > > copy foo ".foo" No need for the quotes there. c:\>copy foo .foo 1 file(s) copied. But you will need them for file names with spaces. James