Skip to content

Super simplified .Net library for multiple cloud drive access

License

Notifications You must be signed in to change notification settings

dvoaviarison/multi-cloud

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HeadBanner Build status

Multi Cloud

Multi Cloud is an open source .Net library that aims to provide with extremely simplified access to multiple cloud drives through the same interface. That includes:

  • Encapsulation of authentification. All you need is to provice you application API credential file
  • Getting list of files, and very easily navigate through the folder trees.
  • Downloading/uploading files etc...

Get started

Very simple, the multi cloud client interface looks like this

	public interface ICloudClient : IDisposable {
		IList<File> GetFiles(string folderId = null);
		string DownloadFile(string fileId, string filePath = null);
		...
	}

Working examples are available in src folder.

Contribute

This project is open source. Fork then PR!

For now we are supporting Google Drive. We will shortly introduce OneDrive as well.

Compatibility

  • .Net Core >= netCore2.0

Releases

No releases published

Packages

No packages published

Languages