By registering with us, you'll be able to discuss, share and private message with other members of our community.
SignUp Now!Having to pre-process filenames that have embedded spaces in order to do a move or copy is annoying. It shouldn't be difficult for the shell to parse them correctly (I mean, Microsoft does it, so how hard can it be?)
Having to pre-process filenames that have embedded spaces in order to do a move or copy is annoying. It shouldn't be difficult for the shell to parse them correctly (I mean, Microsoft does it, so how hard can it be?)
Microsoft (i.e., CMD.EXE) does it the same way as TCC / TCMD, by putting double quotes around the filenames. When a command accepts multiple arguments, it's beyond the scope of a command line parser's abilities to decide when a space is a delimiter and when it isn't.