I have just migrated (finally) from Windows 98 to Windows XP, so please excuse the dumb question. I have a number of shortcuts to MS-DOS batch files that copy specific files from one folder to another (often with long file names), for example:
copy c:myfolder1subfolder1filename.* c:myfolder2
The batch file runs fine, but the shortcut fails, with the error “Path not found”.
If I enclose the paths with ” (as I did for MS-DOS in Windows 98), for example:
copy “c:myfolder1subfolder1filename.*” “c:myfolder2”
It fails with “Too many parameters”.
I must be doing something wrong, but I can’t find any information on how to do it correctly. I would be grateful for some advice.