“找不到路径的一部分”asmx web 服务

“Could not find a part of the path” asmx web service

我有一个接受图像(作为 byte[] 数组)的 Web 服务 Web 方法。

[WebMethod]
        public string SaveImage(byte[] fs, string fileName)
        {
            string path = System.Web.HttpContext.Current.Server.MapPath("~") + "/Images/" + fileName;

            try
            {
                MemoryStream ms = new MemoryStream(fs);
                //Server.MapPath("~/Images/")
                FileStream stream = new FileStream(path, FileMode.CreateNew);

                ms.WriteTo(stream); 
                ms.Close();
                stream.Close();
                stream.Dispose(); 

                return "OK";
            }
            catch (Exception ex)
            {
                string msg = ex.Message.ToString() +
                        "\n" +
                        DateTime.Now.ToShortDateString() +
                        "---" +
                        DateTime.Now.ToShortTimeString() +
                        "\n" +
                        "-----------------------------";
                Logger.WriteLog(msg);

                return ex.Message;
            }
        }

我已经为该文件夹添加了正确的权限,但是无论我尝试什么,我都会遇到同样的错误,

“Could not find a part of the path c:\inetpub\wwwroot\app\Images”

提前感谢您的帮助。

经过一些测试,保存来自另一个平台的数据时出现问题 (android),因此我将图像转换为 base64 字符串。并且我转换为图像并成功保存到文件夹中。