由于 DirectoryNotFoundException 无法上传图片
Posted
技术标签:
【中文标题】由于 DirectoryNotFoundException 无法上传图片【英文标题】:Can't upload an Image due to DirectoryNotFoundException 【发布时间】:2019-05-16 14:27:42 【问题描述】:我正在使用一个名为ImageCropper.Forms 的图像裁剪库,当我从图库中选择完一张图像后,它会裁剪它并将其附加到Image
。
所以我尝试访问图像源以利用它进行上传,但出现此错误。
其实这个库里面还有另外一个库,叫做Xam.Plugin.Media,它可以帮助从图库中选择图片或者用相机拍照。
System.IO.DirectoryNotFoundException:找不到一部分 路径“/文件: /data/user/0/com.nl.via/cache/cropped5748405962114920444.jpg”。 在 System.IO.FileStream..ctor(System.String 路径,System.IO.FileMode 模式,System.IO.FileAccess 访问, System.IO.FileShare 共享,System.Int32 bufferSize,System.Boolean 匿名,System.IO.FileOptions 选项)[0x001 ...
我以为它可以选择Image/ picture
路径,但它不起作用,出了什么问题。
这就是我获得裁剪图片并将其附加到Image
的方式:
private void SelectImageFromGallery(object sender, EventArgs e)
var path = "";
new ImageCropper
CropShape = ImageCropper.CropShapeType.Rectangle,
Success = imageFile =>
Device.BeginInvokeOnMainThread(() =>
//profile_img.Source = ImageSource.FromStream(() => return _mediaFile.GetStream(); );
profile_img.Source = ImageSource.FromFile(imageFile);
Debug.WriteLine("filepath2 " + path);
);
.Show(this);
Debug.WriteLine("filepath " + path);
然后在附加 Pick 之后,我将 pick 上传到服务器:
private async void UploadImage()
try
ai.IsRunning = true;
ai.IsVisible = true;
var token = Application.Current.Properties["token"].ToString();
var multiForm = new MultipartFormDataContent();
string documentsPath = System.Environment.GetFolderPath (System.Environment.SpecialFolder.Personal);
Console.WriteLine("filepath2--:" + profile_img.Source);
// Convert it into bytes.
var readAllBytes = File.ReadAllBytes(profile_img.Source.ToString());
var baContent = new ByteArrayContent(readAllBytes);
multiForm.Add(new StringContent(XValue.ToString()), X);
multiForm.Add(new StringContent(YValue.ToString()), Y);
multiForm.Add(new StringContent("60"), Width);
multiForm.Add(new StringContent("60"), Height);
multiForm.Add(baContent, "image", Path.GetFileName(_mediaFile.AlbumPath));
var client = new HttpClient();
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", token);
var response = await client.PostAsync(Settings.BaseUrl + "/auth/Users/ChangeAvatar", multiForm);
因此,如果您清楚地看到上传部分,则此行会出现错误:
// Convert it into bytes.
var readAllBytes = File.ReadAllBytes(profile_img.Source.ToString());
所以我想知道上传裁剪图像的最佳方法是什么?
编辑:
当我使用 Device File Explorer 时,我看到一个没有 user/0/
的不同路径,下面是一个 Image ,路径是 data/com.nl.via/cache/cropped1030309698891957373.jpg
:
但打印出来的是data/user/0/com.nl.via/cache/cropped1030309698891957373.jpg
。
【问题讨论】:
我只是好奇:Directory.Exists(profile_img.Source.ToString())
说什么?
另外,你的Console.WriteLine("filepath2--:" + profile_img.Source);
说了什么?
当我登录控制台时,我得到了这个/data/user/0/com.nl.via/cache/cropped1030309698891957373.jpg”
。 @TylerMarshall
@mu88,让我们试试吧。
@mu88,它返回False
,但获得正确的最佳方法可能是什么。谢谢。
【参考方案1】:
尝试将文件存储到应用的本地存储中:
var path = "";
new ImageCropper
CropShape = ImageCropper.CropShapeType.Rectangle,
Success = imageFile =>
Device.BeginInvokeOnMainThread(() =>
//profile_img.Source = ImageSource.FromStream(() => return _mediaFile.GetStream(); );
profile_img.Source = ImageSource.FromFile(imageFile);
Debug.WriteLine("filepath2 " + path);
var folderPath = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData);
File.Copy(imageFile, Path.Combine(folderPath, "image.png"));
);
.Show(this);
然后使用这个本地路径读取文件:
var folderPath = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData);
// Keep it the same as the file name when you store it
File.ReadAllBytes(Path.Combine(folderPath, "image.png"));
【讨论】:
感谢您的回答,但这是否意味着我必须这样做:`var readAllBytes = File.ReadAllBytes(Path.Combine(folderPath, "image.png"));
var baContent = new ByteArrayContent(readAllBytes);
也许另一个问题是,你能显示localApplicationData
的路径吗?
localApplicationData
这是应用程序自己的本地内部文件夹路径。您可以对其进行调试以查看路径值。 Path.Combine(folderPath, "image.png")
是文件路径,如果要定义为另一个文件名,可以替换第二个参数。但是您必须使用相同的文件路径来检索它。我更新了告诉您使用相同文件名的答案。【参考方案2】:
首先确保您的图像路径是正确的,因为我认为您粘贴的路径是错误的,因为开头的/File:
,看来您应该拆分该部分并使用其余部分你真正想使用的路径
尝试检查您尝试读取的目录是否是由此创建的。
Directory.Exists(profile_img.Source.ToString())
也可能是权限问题,但也许我错了,因为我不熟悉 android :)
【讨论】:
它返回了false
,这是@mu88 所说的,但我正在尝试他的新建议。
路径 /data/user/0/com.nl.via/cache
是否已在您的设备中创建?
是的,它被创建了。
您是应用程序内部的服务器端,还是向 API/服务发送请求?我认为您将带有设备路径的参数传递给服务器端,因为您在服务器端,所以无法读取。如果我是对的,您应该以 base64 格式发送您的图像并将其存储在您的服务器中,例如
嘿,我已经更新了我的问题,请查看最后一部分。以上是关于由于 DirectoryNotFoundException 无法上传图片的主要内容,如果未能解决你的问题,请参考以下文章