zoukankan      html  css  js  c++  java
  • 文件操作


            /// <summary>
            /// 清理临时文件夹
            /// </summary>
            public void DeleteTempFile()
            {
                try
                {
                    DirectoryInfo di = new DirectoryInfo(Server.MapPath("~/DataInfo"));
                    int dtfd = 2;
                    int.TryParse(ConfigurationManager.AppSettings["DeleteTempFileDay"].ToString(), out dtfd);

                    foreach (FileInfo fi in di.GetFiles("*.txt"))
                    {
                        if ((fi.CreationTime - DateTime.Now).Days > dtfd)
                        {
                            fi.Delete();
                        }
                    }
                    foreach (FileInfo fi in di.GetFiles("*.sav"))
                    {
                        if ((fi.CreationTime - DateTime.Now).Days > dtfd)
                        {
                            fi.Delete();
                        }
                    }
                }
                catch (Exception)
                {
                }
            }

    /***************客户端输出 下载****************/
                Response.AddHeader("Content-Disposition", "attachment; filename=" + Server.UrlEncode(name));
                Response.ContentType = "application/ms-excel";// 指定返回的是一个不能被客户端读取的流,必须被下载
                Response.WriteFile(path + name); // 把文件流发送到客户端
                Response.End();
                Response.Clear();
                Response.ClearHeaders();

    www.jiankangzj.com
  • 相关阅读:
    集群临时重启
    elasticsearch索引目录设置
    elasticsearch索引路径规则
    spring boot 使用application.properties 进行外部配置
    ELASTICSEARCH健康red的解决
    Elasticsearch——使用_cat查看Elasticsearch状态
    vmstat命令
    ava Maven项目之Nexus私服搭建和版本管理应用
    android 2.2 videoView 诡异bug
    华为部分设备运行很卡的问题
  • 原文地址:https://www.cnblogs.com/gaohb/p/2814978.html
Copyright © 2011-2022 走看看