zoukankan      html  css  js  c++  java
  • .net 创建本地文件夹,在网站中创建文件夹

    protected void Button1_Click(object sender, EventArgs e)
        {
            string path = "";
            string physicsPath = Server.MapPath(Request.ApplicationPath); //将当前虚拟根路径转为实际物理路径
            string toFindDirectoryName = "ss"//要查找的文件夹名
            FindDirectory(physicsPath + "\\", toFindDirectoryName, out path);//用递归的方式去查找文件夹
            if (!string.IsNullOrEmpty(path)) //如果存在,返回该文件夹所在的物理路径
            {
                //将该物理路径转为虚拟路径
                Response.Write(GetVirtualPath(path, Request.ApplicationPath));
            }
            else
            {
                //没有找到路径,创建新文件夹
                Directory.CreateDirectory(physicsPath + "\\" + toFindDirectoryName);
            }
        }

        /// <summary>
        
    /// 将物理路径转为虚拟路径
        
    /// </summary>
        
    /// <param name="physicsPath">物理路径</param>
        
    /// <param name="virtualRootPath">虚拟根路径</param>
        
    /// <returns></returns>
        private string GetVirtualPath(string physicsPath, string virtualRootPath)
        {
            int index = physicsPath.IndexOf(virtualRootPath.Substring(1));
            return "/" + physicsPath.Substring(index).Replace("\\""/");
        }

        /// <summary>
        
    /// 在指定目录下递归查找子文件夹
        
    /// </summary>
        
    /// <param name="bootPath">根文件夹路径</param>
        
    /// <param name="directoryName">要查找的文件夹名</param>
        private void FindDirectory(string bootPath, string directoryName, out string filePath)
        {
            //在指定目录下递归查找子文件夹
            DirectoryInfo dir = new DirectoryInfo(bootPath);
            filePath = "";
            try
            {
                foreach (DirectoryInfo d in dir.GetDirectories()) //查找子文件夹
                {
                    if (d.Name == directoryName) //找到,返回文件夹路径
                    {
                        filePath = d.FullName;
                        break;
                    }
                    FindDirectory(bootPath + d.Name + "\\", directoryName, out filePath); //否则继续查找
                }
            }
            catch (Exception e)
            {
                Response.Write(e.Message);
            }

        }
  • 相关阅读:
    GPU编程和流式多处理器(七)
    GPU编程和流式多处理器(六)
    vue——使用vant轮播组件swipe + flex时,文字抖动问题
    golang 修改字符串
    Go 彻底弄懂return和defer的微妙关系
    Redis 的持久化机制
    Redis 缓存击穿
    Redis 缓存穿透
    Redis 雪崩
    正则验证
  • 原文地址:https://www.cnblogs.com/hishanghai/p/2558837.html
Copyright © 2011-2022 走看看