-
Oct 12th, 2024, 10:45 AM
#1
Thread Starter
Fanatic Member
Google cloud uploader
Hello!
Can anybody recommend a upload function / class developed with VB6 that is able to resume upload to cloud hosters, especially Google and Dropbox?
Thank you.
-
Oct 12th, 2024, 11:20 AM
#2
Re: Google cloud uploader
This is not trivially simple to implement but we've been using rclone utility to sync with Backblaze storage for some years now and rclone turned out to be very versatile swiss-army tool for such tasks.
cheers,
</wqw>
-
Oct 20th, 2024, 05:51 PM
#3
Thread Starter
Fanatic Member
Re: Google cloud uploader
-
Oct 29th, 2024, 04:47 AM
#4
Member
Re: Google cloud uploader
Hey, you might wanna check out using a REST API with Google Drive or Dropbox. They both let you upload files in parts, and you can handle that in VB6 with some extra HTTP stuff.
Also, if you’re looking to manage your cloud storage costs and track subscriptions, you can find here saas subscription management. It helps you keep tabs on what you’re spending on Google and Dropbox.
Last edited by Napstore; Oct 31st, 2024 at 04:40 AM.
-
Oct 30th, 2024, 10:25 AM
#5
Thread Starter
Fanatic Member
Re: Google cloud uploader
Thank you. Can you share your approach to handling this via VB6 with REST API?
-
Oct 30th, 2024, 12:55 PM
#6
Re: Google cloud uploader
you could build the .NET api client as a COM dll for direct use with vb6
https://www.dropbox.com/developers/documentation/dotnet
https://github.com/dropbox/dropbox-sdk-dotnet
the last time I needed this I think I used a python library with a command line support and just shell'ed that from vb6 parent app.
https://github.com/dropbox/dbxcli
or
https://github.com/dropbox/dropbox-sdk-python
cant remember if it had resume support. I havent seen a vb6 native implementation yetthere is a way to use python over com or run python directly within vb process
integrating with an existing lib in a different language is likely the best option. it will increase redistribution complexity though.
Last edited by dz32; Oct 30th, 2024 at 10:30 PM.
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|