Answers for "c# get folder all files"

C#
3

read folder c#

string mydocpath=Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);     
      StringBuilder sb = new StringBuilder();
      foreach (string txtName in Directory.GetFiles(@"D:Links","*.txt"))
      {
        using (StreamReader sr = new StreamReader(txtName))
        {
          sb.AppendLine(txtName.ToString());
          sb.AppendLine("= = = = = =");
          sb.Append(sr.ReadToEnd());
          sb.AppendLine();
          sb.AppendLine();   
        }
      }
      using (StreamWriter outfile=new StreamWriter(mydocpath + @"AllTxtFiles.txt"))
      {    
        outfile.Write(sb.ToString());
      }
Posted by: Guest on November-06-2020
-1

how to get all files from folder and subfolders in c#

private IEnumerable<string> GetAllFiles(string path, string searchPattern)
  {
            return Directory.EnumerateFiles(path, searchPattern).Union(
                Directory.EnumerateDirectories(path).SelectMany(d =>
                {
                    try
                    {
                        return GetAllFiles(d, searchPattern);
                    }
                    catch (Exception)
                    {
                        return Enumerable.Empty<string>();
                    }
                }));
 }

//or special for c# and .cs files
        /*private List<string> GetAllCsFilesFromDirectory(string directory, string searchPattern)
        {
			List<string> lstFilesFound = new List<string>();
            try
            {
                foreach (string path in Directory.GetDirectories(directory))
                {
                    foreach (string item in Directory.GetFiles(path, CsharpFileExtension, SearchOption.AllDirectories))
                    {
                        lstFilesFound.Add(item);
                    }

                    GetAllCsFilesFromDirectory(path, searchPattern);
                }
            }
            catch (Exception e)
            {
                Console.WriteLine(e);
            }

            return lstFilesFound;
        }*/
Posted by: Guest on October-16-2020

Code answers related to "c# get folder all files"

C# Answers by Framework

Browse Popular Code Answers by Language