在设备上测试但我无法将文件保存到设备上的音乐中?

时间:2016-05-17 08:30:01

标签: xamarin xamarin.android

我开发了一个应用并在我的设备上测试它。



var webClient = new WebClient ();
			webClient.DownloadDataCompleted+= (object sender, DownloadDataCompletedEventArgs e) => 
			{
				var bytes=e.Result;
				string documentsPath=System.Environment.GetFolderPath(System.Environment.SpecialFolder.MyMusic);
				string localFilename=Intent.GetStringExtra("title").Replace("_","");
				string localPath=Path.Combine(documentsPath,localFilename);
				File.WriteAllBytes(localPath,bytes);
			};




我总是在documentsPath上得到null。如何将文件保存到设备(.mp3)

0 个答案:

没有答案