我想使用xamarin表单IOS在Dropbox app文件夹中共享文件

时间:2015-10-14 05:13:51

标签: c# xamarin dropbox xamarin.forms dropbox-api

我使用“Dropbox sync and Datastore”组件实现了Dropbox同步概念。

对于文本说明,它工作正常。但我想为文件和照片做同样的事情。

//Following code will create a file 
DBError error;
        var documents =
            Environment.GetFolderPath (Environment.SpecialFolder.MyDocuments); 
        var filename = Path.Combine (documents, "Write.txt");
        File.WriteAllText (filename, "Write this text into a file");

//Following code for share file on dropbox
DBPath newPath = DBPath.Root.ChildPath(filename);
DBFile archivo = DBFilesystem.SharedFilesystem.CreateFile (newPath,out error);

我在最后一行遇到异常对象引用未设置为实例

请帮助我。

0 个答案:

没有答案