I'm uploading large disk image files in C# WinForms (eventually Windows Service) into a folder in my Drive, and am currently using a Google Service account to do so.
I have a 2TB subscription for my personal Drive, however upon completion of upload of large files ( > 15GB which is the ServiceAccount quota) it throws an exception because the ServiceAccount does not have the same quota as my personal account.
How can I authenticate, and then upload files using my personal account, instead of the service account? This will remove the quota restriction.
OR
Can I set permissions on the file I'm uploading so that I don't get this quota error?