I am going to using Python to rename some files that are saved in the local Google Drive File Stream. The os.listdir
can find all the files in a given folder. But os.rename
cannot be performed, because of the error:
"FileNotFoundError: [WinError 3] The system cannot find the path specified: 'G:\\.shortcut-targets-by-id\\17HXYw7EIOuzCUdeM0QulV-aWGAuZug6s\\....'
.
The file actually exists. This is a false alarming.
I also tried doing the same thing in Matlab, and got a similar error "Cannot find the specified file:...."
.
Is there any solution to achieve this, without moving the files in the google file stream to a local folder?