C#封装的常用文件操作源码类

如下代码段是关于C#封装的常用文件操作类的代码,希望对小伙伴们有些用处。

using System;

using System.Text;

using System.Web;

using System.IO;

namespace DotNet.Utilities

{

    public class FileOperate

    {

        #region 写文件

        protected void Write_Txt(string FileName, string Content)

        {

            Encoding code = Encoding.GetEncoding("gb2312");

            string str = Content;

            StreamWriter sw = null;

            {

                try

                {

                    sw = new StreamWriter(htmlfilename, false, code);

                    sw.Write(str);

                    sw.Flush();

                }

                catch { }

            }

            sw.Close();

            sw.Dispose();

        }

        #endregion

        #region 读文件

        protected string Read_Txt(string filename)

        {

            Encoding code = Encoding.GetEncoding("gb2312");

            string temp = HttpContext.Current.Server.MapPath("Precious\" + filename + ".txt");

            string str = "";

            if (File.Exists(temp))

            {

                StreamReader sr = null;

                try

                {

                    sr = new StreamReader(temp, code);

                }

                catch { }

                sr.Close();

                sr.Dispose();

            }

            else

            {

                str = "";

            }

            return str;

        }

        #endregion

        #region 取得文件后缀名

        public static string GetPostfixStr(string filename)

        {

            int start = filename.LastIndexOf(".");

            int length = filename.Length;

            string postfix = filename.Substring(start, length - start);

            return postfix;

        }

        #endregion

        #region 写文件

        public static void WriteFile(string Path, string Strings)

        {

            if (!System.IO.File.Exists(Path))

            {

                System.IO.FileStream f = System.IO.File.Create(Path);

                f.Close();

                f.Dispose();

            }

            System.IO.StreamWriter f2 = new System.IO.StreamWriter(Path, true, System.Text.Encoding.UTF8);

            f2.WriteLine(Strings);

            f2.Close();

            f2.Dispose();

        }

        #endregion

        #region 读文件

        public static string ReadFile(string Path)

        {

            string s = "";

            if (!System.IO.File.Exists(Path))

                s = "不存在相应的目录";

            else

            {

                StreamReader f2 = new StreamReader(Path, System.Text.Encoding.GetEncoding("gb2312"));

                s = f2.ReadToEnd();

                f2.Close();

                f2.Dispose();

            }

            return s;

        }

        #endregion

        #region 追加文件

        public static void FileAdd(string Path, string strings)

        {

            StreamWriter sw = File.AppendText(Path);

            sw.Write(strings);

            sw.Flush();

            sw.Close();

            sw.Dispose();

        }

        #endregion

        #region 拷贝文件

        public static void FileCoppy(string OrignFile, string NewFile)

        {

            File.Copy(OrignFile, NewFile, true);

        }

        #endregion

        #region 删除文件

        public static void FileDel(string Path)

        {

            File.Delete(Path);

        }

        #endregion

        #region 移动文件

        public static void FileMove(string OrignFile, string NewFile)

        {

            File.Move(OrignFile, NewFile);

        }

        #endregion

        #region 在当前目录下创建目录

        public static void FolderCreate(string OrignFolder, string NewFloder)

        {

            Directory.SetCurrentDirectory(OrignFolder);

            Directory.CreateDirectory(NewFloder);

        }

        public static void FolderCreate(string Path)

        {

            if (!Directory.Exists(Path))

                Directory.CreateDirectory(Path);

        }

        #endregion

        #region 创建目录

        public static void FileCreate(string Path)

        {

            if (!CreateFile.Exists)

            {

                FileStream FS = CreateFile.Create();

                FS.Close();

            }

        }

        #endregion

        #region 递归删除文件夹目录及文件

        public static void DeleteFolder(string dir)

        {

            {

                foreach (string d in Directory.GetFileSystemEntries(dir))

                {

                    if (File.Exists(d))

                    else

                }

            }

        }

        #endregion

        #region 将指定文件夹下面的所有内容copy到目标文件夹下面 果目标文件夹为只读属性就会报错。

        public static void CopyDir(string srcPath, string aimPath)

        {

            try

            {

                if (aimPath[aimPath.Length - 1] != Path.DirectorySeparatorChar)

                    aimPath += Path.DirectorySeparatorChar;

                if (!Directory.Exists(aimPath))

                    Directory.CreateDirectory(aimPath);

                string[] fileList = Directory.GetFileSystemEntries(srcPath);

                foreach (string file in fileList)

                {

                    if (Directory.Exists(file))

                        CopyDir(file, aimPath + Path.GetFileName(file));

                    else

                        File.Copy(file, aimPath + Path.GetFileName(file), true);

                }

            }

            catch (Exception ee)

            {

                throw new Exception(ee.ToString());

            }

        }

        #endregion

        #region 获取指定文件夹下所有子目录及文件(树形)

        public static string GetFoldAll(string Path)

        {

            string str = "";

            DirectoryInfo thisOne = new DirectoryInfo(Path);

            str = ListTreeShow(thisOne, 0, str);

            return str;

        }

        {

            foreach (DirectoryInfo dirinfo in subDirectories)

            {

                if (nLevel == 0)

                {

                    Rn += "├";

                }

                else

                {

                    string _s = "";

                    for (int i = 1; i <= nLevel; i++)

                    {

                        _s += "│&nbsp;";

                    }

                    Rn += _s + "├";

                }

                Rn += "<b>" + dirinfo.Name.ToString() + "</b><br />";

                foreach (FileInfo fInfo in fileInfo)

                {

                    if (nLevel == 0)

                    {

                        Rn += "│&nbsp;├";

                    }

                    else

                    {

                        string _f = "";

                        for (int i = 1; i <= nLevel; i++)

                        {

                            _f += "│&nbsp;";

                        }

                        Rn += _f + "│&nbsp;├";

                    }

                    Rn += fInfo.Name.ToString() + " <br />";

                }

                Rn = ListTreeShow(dirinfo, nLevel + 1, Rn);

            }

            return Rn;

        }

        public static string GetFoldAll(string Path, string DropName, string tplPath)

        {

            string strDrop = "<select name="" + DropName + "" id="" + DropName + ""><option value="">--请选择详细模板--</option>";

            string str = "";

            DirectoryInfo thisOne = new DirectoryInfo(Path);

            str = ListTreeShow(thisOne, 0, str, tplPath);

            return strDrop + str + "</select>";

        }

        {

            foreach (DirectoryInfo dirinfo in subDirectories)

            {

                Rn += "<option value="" + dirinfo.Name.ToString() + """;

                if (tplPath.ToLower() == dirinfo.Name.ToString().ToLower())

                {

                    Rn += " selected ";

                }

                Rn += ">";

                if (nLevel == 0)

                {

                    Rn += "┣";

                }

                else

                {

                    string _s = "";

                    for (int i = 1; i <= nLevel; i++)

                    {

                        _s += "│&nbsp;";

                    }

                    Rn += _s + "┣";

                }

                Rn += "" + dirinfo.Name.ToString() + "</option>";

                foreach (FileInfo fInfo in fileInfo)

                {

                    Rn += "<option value="" + dirinfo.Name.ToString() + "/" + fInfo.Name.ToString() + """;

                    if (tplPath.ToLower() == fInfo.Name.ToString().ToLower())

                    {

                        Rn += " selected ";

                    }

                    Rn += ">";

                    if (nLevel == 0)

                    {

                        Rn += "│&nbsp;├";

                    }

                    else

                    {

                        string _f = "";

                        for (int i = 1; i <= nLevel; i++)

                        {

                            _f += "│&nbsp;";

                        }

                        Rn += _f + "│&nbsp;├";

                    }

                    Rn += fInfo.Name.ToString() + "</option>";

                }

                Rn = ListTreeShow(dirinfo, nLevel + 1, Rn, tplPath);

            }

            return Rn;

        }

        #endregion

        #region 获取文件夹大小

        public static long GetDirectoryLength(string dirPath)

        {

            if (!Directory.Exists(dirPath))

                return 0;

            long len = 0;

            DirectoryInfo di = new DirectoryInfo(dirPath);

            foreach (FileInfo fi in di.GetFiles())

            {

                len += fi.Length;

            }

            DirectoryInfo[] dis = di.GetDirectories();

            if (dis.Length > 0)

            {

                for (int i = 0; i < dis.Length; i++)

                {

                    len += GetDirectoryLength(dis[i].FullName);

                }

            }

            return len;

        }

        #endregion

        #region 获取指定文件详细属性

        public static string GetFileAttibe(string filePath)

        {

            string str = "";

            System.IO.FileInfo objFI = new System.IO.FileInfo(filePath);

            str += "详细路径:" + objFI.FullName + "<br>文件名称:" + objFI.Name + "<br>文件长度:" + objFI.Length.ToString() + "字节<br>创建时间" + objFI.CreationTime.ToString() + "<br>最后访问时间:" + objFI.LastAccessTime.ToString() + "<br>修改时间:" + objFI.LastWriteTime.ToString() + "<br>所在目录:" + objFI.DirectoryName + "<br>扩展名:" + objFI.Extension;

            return str;

        }

        #endregion

    }

}

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,884评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,347评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,435评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,509评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,611评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,837评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,987评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,730评论 0 267
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,194评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,525评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,664评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,334评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,944评论 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,764评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,997评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,389评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,554评论 2 349

推荐阅读更多精彩内容