另外可以 使用camera的GetClientPhotoPath方法,例如 camera1.GetClientPhotoPath((obj,args)=> {
foreach (KeyValuePair<string ,string> dt in args.Resources)
{
Toast(dt.Key + "####" + dt.Value);//key为图片名称 value为路径
}
});
手机文件路路径可以通过 this.Client.File.UploadPath获取,例如
clientPath = "";
this.Client.File.UploadPath((obj, args) =>
{
if (args.isError == false)
{
clientPath = args.Resources.ElementAt(0).Value;
Toast(clientPath);
}
else
{
Toast(args.error);
}
});
更多关于文件下载上传的示例参考 https://github.com/comsmobiler/SmobilerTutorials/blob/master/Source/Components/demoClient.cs
|