首页 > Windows开发 > 详细

C# 判断当前目录是否存在不存在则创建

时间:2014-12-19 18:38:47      阅读:350      评论:0      收藏:0      [点我收藏+]

/// <summary>
/// 判断目录是否存在不存在则创建
/// </summary>
/// <param name="Path"></param>
private static void ExitOrCreate(string Path)
{
if (!Directory.Exists(Path))
{
Directory.CreateDirectory(Path);
}
}

 

Example:ExitOrCreate(HttpContext.Current.Server.MapPath(“~/FileUpLoad/SavedTel”));

C# 判断当前目录是否存在不存在则创建

原文:http://www.cnblogs.com/a-mumu/p/4174319.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!