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

如何检测文件夹是否可写可读

时间:2014-10-30 21:05:53      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:io   os   for   sp   文件   on   bs   app   file   

private bool CheckFolderWriteable(string path)
        {
            if (!Directory.Exists(path))
            {
                Directory.CreateDirectory(Server.MapPath(path));
                return true;
            }

            try
            {
                string testFilePath = string.Format("{0}/test{1}{2}{3}{4}.txt", path, DateTime.Now.Hour, DateTime.Now.Minute, DateTime.Now.Second, DateTime.Now.Millisecond);
                FileStream TestFile = System.IO.File.Create(testFilePath); // 可读
                TestFile.WriteByte(Convert.ToByte(true)); // 可写
                TestFile.Close();
                System.IO.File.Delete(testFilePath);
                return true;
            }
            catch
            {
                return false;
            }

        }

如何检测文件夹是否可写可读

标签:io   os   for   sp   文件   on   bs   app   file   

原文地址:http://my.oschina.net/u/855028/blog/339025

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