我使用“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);
我在最后一行遇到异常对象引用未设置为实例。
请帮助我。