首页 > Windows开发 > 详细

C# get files and write the files full name in txt

时间:2019-10-18 15:53:19      阅读:58      评论:0      收藏:0      [点我收藏+]
 static void GetAllFiles()
        {
            string path = "filepath";
            var allFiles = Directory.GetFiles(path);
            string fileName = "file.txt";

            using (FileStream fStream = File.Create(fileName))
            { }

            using (FileStream fStream = File.Create("file.txt"))
            {
                using (StreamWriter writer = new StreamWriter(fStream, Encoding.UTF8))
                {
                    foreach (var file in allFiles)
                    {
                        writer.WriteLine(file);
                    }
                }
            }
        }

 

C# get files and write the files full name in txt

原文:https://www.cnblogs.com/Fred1987/p/11698318.html

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