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[] { };

  • 相关阅读:
    Shell,Bash,等脚本学习(有区别)
    nfs 服务器
    awk的简单使用
    GPRS研究(3):NO CARRIER错误的含义解释
    信号量
    Linux 的多线程编程的高效开发经验
    getaddrinfo()函数详解
    iOS 知识点
    UITableView拉伸效果
    在Xcode中使用Git进行源码版本控制
  • 原文地址:https://www.cnblogs.com/slwangzi/p/5398925.html
Copyright © 2011-2022 走看看