• 修改ckeditor/ckfinder上传文件文件夹 路径以日期格式命名


    修改/ckfinder/config.ascx文件:

    string dateDir = DateTime.Today.ToString("yyyyMM/");

    ResourceType type;
    type = ResourceType.Add( "Files" );
    type.Url = BaseUrl + "files/" + dateDir;
    type.Dir = BaseDir == "" ? "" : BaseDir + "files/" + dateDir;
    type.MaxSize = 0;
    type.AllowedExtensions = new string[] { "7z", "aiff", "asf", "avi", "bmp", "csv", "doc", "docx", "fla", "flv", "gif", "gz", "gzip", "jpeg", "jpg", "mid", "mov", "mp3", "mp4", "mpc", "mpeg", "mpg", "ods", "odt", "pdf", "png", "ppt", "pptx", "pxd", "qt", "ram", "rar", "rm", "rmi", "rmvb", "rtf", "sdc", "sitd", "swf", "sxc", "sxw", "tar", "tgz", "tif", "tiff", "txt", "vsd", "wav", "wma", "wmv", "xls", "xlsx", "zip" };
    type.DeniedExtensions = new string[] { };

    type = ResourceType.Add( "Images" );
    type.Url = BaseUrl + "images/" + dateDir;
    type.Dir = BaseDir == "" ? "" : BaseDir + "images/" + dateDir;
    type.MaxSize = 0;
    type.AllowedExtensions = new string[] { "bmp", "gif", "jpeg", "jpg", "png" };
    type.DeniedExtensions = new string[] { };

    type = ResourceType.Add( "Flash" );
    type.Url = BaseUrl + "flash/" + dateDir;
    type.Dir = BaseDir == "" ? "" : BaseDir + "flash/" + dateDir;
    type.MaxSize = 0;
    type.AllowedExtensions = new string[] { "swf", "flv" };
    type.DeniedExtensions = new string[] { };

  • 相关阅读:
    Git安装(操作篇)
    Git安装
    ES6基础练习
    SVN的安装与搭建及使用
    解决SVN文件不显示绿色小钩图标问题
    混入(mixin)
    ref属性与props配置项
    docker-compose部署 Mysql 8.0 主从模式基于GTID
    项目统一处理
    Docker Compose实战
  • 原文地址:https://www.cnblogs.com/slwangzi/p/5398925.html
Copyright © 2020-2023  润新知