
Quote: Originally Posted by
ffrree
Can someone advise me how to specify files names that contains a space, e.g.
the name "this file" in Command Prompt.
I tried using " and ' to quote the file name, but none works
Thanks
Welcome ffrree, long file names with embedded spaces require a full set of quotes
starting and ending with no spaces at the front or end.
cmd "xxx readme.exe"
if this was an executable.
or
c:\> copy "file1 stuff.doc" "rrr is a file name.doc"
will work
notice the starting and ending quotes.
Rich