Set to Clipboard Command Prompt

I am tring to set a command to clipboard which I need to paste in cmd this command is :

copy *.csv “Official Label Monitoring.csv”

But I am getting the Error as :

End of Expression Expected

image

Can Anyone explain What am i doing Wrong Here ?

Try below, with the plus sign

“copy *.csv” + “official label montoring.csv”

Thank You. I complete forgot about the concept of escaping characters.

1 Like

Hi,

I think it should be as the following if you want to express double quote.

"copy *.csv ""Official Label Monitoring.csv"""

Regards,

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.