Keliomer

Results 5 comments of Keliomer

No need to set any content if it's going to be empty: ``` from pydrive import auth, drive #authorize however you want gauth = auth.GoogleAuth().LocalWebserverAuth() #create your drive object drive...

Alternatively #88 is similar and there is a fix on a dev branch!

A folder/directory in Drive _is_ a file with the mimetype 'application/vnd.google-apps.folder' by default it will be assigned an ID and you use this ID as the parent ID when creating...

@rarup1 you need to add query parameters to the ListFile() call ie `file_list = drive.ListFile({'q':"title='yourfiletitle' and 'parent_id' in parents and trashed=false"}).GetList()` Without the query params you're not actually looking for...

Can you post the code you use to upload?