zoukankan      html  css  js  c++  java
  • 修改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[] { };

  • 相关阅读:
    Linux学习
    官网地址
    Unsupported major.minor version 51.0
    获取select的option值
    网页中JS函数自动执行常用三种方法
    Python活力练习Day3
    时间复杂度的简单理解版本,非专业~~
    Python活力练习Day2
    Python活力练习Day1
    状压DP之LGTB 与序列
  • 原文地址:https://www.cnblogs.com/slwangzi/p/5398925.html
Copyright © 2011-2022 走看看