0

バンドルを使用しています。ただし、ファイルが見つからない場合は例外を送信しません。

存在するファイルをチェックし、ファイルが存在しない場合は例外をキャッチする必要があります。私は試した:

var cssCommon = "/Common/common.css";

if (!System.IO.File.Exists(server.MapPath("~") + cssCommon))
{
   throw new FileNotFoundException(cssCommon);
}

しかし、常に例外がありました

グローバル asax またはバンドル設定に存在するファイルを確認するにはどうすればよいですか?

4

1 に答える 1

1

BundleHelperこのタスクには a を使用することを好みます。

ハーマンはここに優れたものを持っています: https://stackoverflow.com/a/25784663/732377

完全を期すためにここにコピーしましたが、すべての栄誉は Herman に送られるべきです!

public static class BundleHelper
{
    [Conditional("DEBUG")] // remove this attribute to validate bundles in production too
    private static void CheckExistence(string virtualPath)
    {
        int i = virtualPath.LastIndexOf('/');
        string path = HostingEnvironment.MapPath(virtualPath.Substring(0, i));
        string fileName = virtualPath.Substring(i + 1);

        bool found = Directory.Exists(path);

        if (found)
        {
            if (fileName.Contains("{version}"))
            {
                var re = new Regex(fileName.Replace(".", @"\.").Replace("{version}", @"(\d+(?:\.\d+){1,3})"));
                fileName = fileName.Replace("{version}", "*");
                found = Directory.EnumerateFiles(path, fileName).Where(file => re.IsMatch(file)).FirstOrDefault() != null;
            }
            else // fileName may contain '*'
                found = Directory.EnumerateFiles(path, fileName).FirstOrDefault() != null;
        }

        if (!found)
            throw new ApplicationException(String.Format("Bundle resource '{0}' not found", virtualPath));
    }

    public static Bundle IncludeExisting(this Bundle bundle, params string[] virtualPaths)
    {
        foreach (string virtualPath in virtualPaths)
            CheckExistence(virtualPath);

        return bundle.Include(virtualPaths);
    }

    public static Bundle IncludeExisting(this Bundle bundle, string virtualPath, params IItemTransform[] transforms)
    {
        CheckExistence(virtualPath);
        return bundle.Include(virtualPath, transforms);
    }
}

次に、構成で:

 bundles.Add(new ScriptBundle("~/test")
    .IncludeExisting("~/Scripts/jquery/jquery-{version}.js")
    .IncludeExisting("~/Scripts/lib*")
    .IncludeExisting("~/Scripts/model.js")
    );

ただし、この一般的な問題に対する他の解決策もチェックアウトすることをお勧めします。

ここではnrodicはかなり簡単です:https://stackoverflow.com/a/24812225/732377

于 2015-01-23T10:46:20.063 に答える