Answers for "find file in a folder c#"

C#
1

c# retrieve files in folder

using System.IO;

string[] filePaths = Directory.GetFiles(@"c:MyDir");
// returns:
// "c:MyDirmy-car.BMP"
// "c:MyDirmy-house.jpg"
Posted by: Guest on June-16-2020
4

C# get all files in directory

//path is the path of the directory to get files from
//searchPattern is to get specific files. If you want only exe files you enter *.exe

private static 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 e)
                {
                    return Enumerable.Empty<string>();
                }
            }));
        }
Posted by: Guest on May-04-2020

Code answers related to "find file in a folder c#"

C# Answers by Framework

Browse Popular Code Answers by Language