zoukankan      html  css  js  c++  java
  • 样式版本批量处理,使用文件修改最后日期作为版本号参数

    using System;
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using System.Text;
    using System.Web;

    namespace CRM3.Common
    {
    public class AutoVersion
    {
    private static string SetVersion(string filePath)
    {
    string verFilePath = filePath;
    string serverPath = HttpContext.Current.Server.MapPath(filePath);
    if (File.Exists(serverPath))
    {
    verFilePath = filePath + "?" + File.GetLastWriteTime(serverPath).ToString("yyMMddHHmmss");
    //verFilePath = filePath.Insert(filePath.LastIndexOf('.'),
    // string.Concat(".", File.GetLastWriteTime(serverPath).ToString("yyMMddHHmmss")));
    }
    return verFilePath;
    }

    public static string CssLink(params string[] filePath)
    {
    var sb = new StringBuilder();
    Array.ForEach(filePath, f => sb.AppendLine(string.Format(@"<link rel=""stylesheet"" type=""text/css"" href=""{0}"" />",
    SetVersion(f))));
    return sb.ToString();
    }
    public static string JavaScriptLink(params string[] filePath)
    {
    var sb = new StringBuilder();
    Array.ForEach(filePath, f => sb.AppendLine(string.Format(@"<script type=""text/javascript"" src=""{0}""></script>",
    SetVersion(f))));
    return sb.ToString();
    }
    }
    }

  • 相关阅读:
    C/C++中0xcccccccc...
    函数指针定义
    Visual C++的DLL
    RGB
    链接指示:extern "C"
    for_each用法
    漫画 | 夜深了,程序员的电脑却没关,发生了这样的故事…
    漫画 | 小公司卧薪尝胆三年,意外拿到美团offer
    Java 可变参数
    使用程序往Neo4j导入CSV报错
  • 原文地址:https://www.cnblogs.com/liwp/p/7084856.html
Copyright © 2011-2022 走看看