码迷,mamicode.com
首页 > 其他好文 > 详细

获取当前运行程序上一级目录指定文件夹,没有就创建文件夹

时间:2021-04-10 12:52:27      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:col   rect   创建   rgba   base   sed   class   directory   cto   

//获取当前运行程序上一级目录PDF文件夹 
private string txtPath = System.AppDomain.CurrentDomain.BaseDirectory + "PDF\\";
//如果该文件下没有PDF文件夹就创建该文件夹
if (!Directory.Exists(txtPath))
            {
                Directory.CreateDirectory(txtPath);
            }

 

获取当前运行程序上一级目录指定文件夹,没有就创建文件夹

标签:col   rect   创建   rgba   base   sed   class   directory   cto   

原文地址:https://www.cnblogs.com/yuanshuo/p/14636999.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!