iterative / PyDrive2

Google Drive API Python wrapper library. Maintained fork of PyDrive.

Home Page:https://docs.iterative.ai/PyDrive2

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Move file to folder

Dario-Ciceri opened this issue · comments

Hi, is there a way to move an existing spreadsheet to a folder?
I tried with:

current_file['parents'][0]['id'] = folders[current_file_title_to_datetime.month-1]['id']
current_file.Upload()

it doesn't give errors but the current_file['parents'][0]['id'] didn't changed.

Thanks

oh nevermind, like this it works:

current_file['parents'] = [{"id":folders[current_file_title_to_datetime.month-1]['id']}]
current_file.Upload()

I know there's a filesystem which it would be easier to use but it doesn't seems to work, it always gives me AssertionError when trying to mv, move, cp or copy files...