I can successfullay access root using ``` from pydrive.auth import GoogleAuth from pydrive.drive import GoogleDrive gauth = GoogleAuth() gauth.LocalWebserverAuth() drive = GoogleDrive(gauth) ``` but my doubt is 'How can I access the subdirectory and download/access a file inside it' ?
I can successfullay access root using
but my doubt is 'How can I access the subdirectory and download/access a file inside it' ?