I'm trying to move a file but it won't work. It keeps giving the error "Errno 2: File or directory does not exist". The code is shown below
import shutil
original = '%userprofile%/Desktop/Test'
New = '%userprofile%/Desktop/Test2'
shutil.move(original, New)
if anyone has any advice on how to solve this please help me.