I am trying to move specific folders within a file directory inside a flash drive with the Python shutil
library. I am getting the following error:
FileNotFoundError: [Errno 2] No such file or directory: 'D:\\New Folder\\CN00020'.
I have looked at some questions posted and I think my issue may be that I am not declaring the filepath correctly. I am using the Spyder app for Python and Windows 10.
import shutil
shutil.move('D:\\New Folder\CN00020', 'D:\\Batch Upload')