Dropbox API

Dropbox - Uploading a File

Submitted by Karthikeyan on
Before using this code make sure you added necessary references to sharpbox dll files and you generated the token file(SharpDropBox.Token) using Dropbox Token Issuer Tool (Revised) for Sharpbox . using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using AppLimit.CloudComputing.SharpBox; using AppLimit.CloudComputing.SharpBox.StorageProvider.DropBox; namespace StatsUploader { class UploadtoDropbox { public void Upload()

Dropbox - Listing files

Submitted by Karthikeyan on
Before using this code make sure you added necessary references to sharpbox dll files and you generated the token file(SharpDropBox.Token) using Dropbox Token Issuer Tool (Revised) for Sharpbox.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using AppLimit.CloudComputing.SharpBox;
using AppLimit.CloudComputing.SharpBox.StorageProvider.DropBox;

namespace StatsUploader
{
    class ListDropboxFiles
    {