我正在尝试ByteArrayContent
通过我的网络服务上传图像文件。我已将所有图像添加到共享项目并将构建操作设置为Embedded resource
.
以下是我的代码:
var fileBytes = File.ReadAllBytes("Avatars." + selectedAvatar);
var byteContent = new ByteArrayContent(fileBytes);
content.Add(byteContent, "file", selectedAvatar);
当我像上面那样尝试时,我得到了System.IO.FileNotFoundException: Could not find file "/Projectname.Avatars.ic_avatar01_xx.png"
将图像直接添加到共享项目的文件夹中,如下图所示。
我尝试更改 . 在文件路径中带有 / ,如下所示:
var fileBytes = File.ReadAllBytes("Avatars/" + selectedAvatar);
var byteContent = new ByteArrayContent(fileBytes);
content.Add(byteContent, "file", selectedAvatar);
但在那种情况下,我得到了System.IO.DirectoryNotFoundException: Could not find a part of the path "/Avatars/ic_avatar01_xx.png"
获取存储在共享项目中的图像文件路径的正确方法是什么?
还尝试了另一种方法:
string avatarFileName = "Avatars/" + selectedAvatar;
var assembly = typeof(ProfilePage).GetTypeInfo().Assembly;
var stream = assembly.GetManifestResourceStream($"{assembly.GetName().Name}.{avatarFileName}");
content.Add(stream, "file", avatarFileName);
但在上述情况下,我收到以下错误: