I am trying to copy and paste a file into my h:
drive, which is a personal drive. I am getting the following error:
target = (r'H:\')
SyntaxError: EOL while scanning string literal
Here is my code :
import shutil
original = (r'H:\Bulk upload\filetocopy.xlsx')
target = (r'H:\')
shutil.copyfile(original,target)