G
GO
Remove the quotes from the command line argument (ie %1). You are in affect
wrapping your variable in two sets of quotes which the system does not
understand. Another problem you are going to run into is that you will
only be able to copy one file at a time; if you try to copy multiple
(selected) files, each file would be a seperate argument (ie %1, %2, %3,
etc). I'm not sure how you'll be able to get around this issue.
wrapping your variable in two sets of quotes which the system does not
understand. Another problem you are going to run into is that you will
only be able to copy one file at a time; if you try to copy multiple
(selected) files, each file would be a seperate argument (ie %1, %2, %3,
etc). I'm not sure how you'll be able to get around this issue.