System.IO.File.Exists在发布网站后无法正常工作

时间:2016-07-02 09:22:52

标签: c# model-view-controller file-permissions

System.IO.File.Exists在发布网站后无法正常工作。我需要使用'System.IO.File.Exists'检查路径中是否已存在exe文件。它在localhost中工作正常,但不能正常工作在发布网站之后。我认为由于许可存在任何替代方案吗?请帮助。

我的代码如下:

foreach (var item in reslt)
        {
            if (System.IO.File.Exists(item.Path))
            {
                flag = true;
                using (APM context = new APM())
                {
                    var res = (
                        from s in context.T_SoftwarePath
                        where s.UserID == user
                        select s).ToList();
                    res.ForEach(s => s.Value = twoinone);
                    context.SaveChanges();
                }

                Process.Start(item.Path);
                break;
            }
        }

        if (flag == false)
        {
            f1 = Download(twoinone);
        }

0 个答案:

没有答案