user1775334
user1775334

Reputation: 191

C# return full path with GetFiles

Use this code for search files in directory:

FileInfo[] files = null;
string path = some_path;
DirectoryInfo folder = new DirectoryInfo(path);
files = folder.GetFiles("*.*", SearchOption.AllDirectories);

This return only filename and extension (text.exe). How to return full path to file(C:\bla\bla\bla\text.exe)?

If I use Directory.GetFiles("*.*"), this return full path. But if folder contains point in name(C:\bla\bla\test.0.1), result contains path to folder without file:

etc.

Upvotes: 13

Views: 36815

Answers (6)

Ilya Ivanov
Ilya Ivanov

Reputation: 23646

FileInfo contains a FullName property, which you can use to retrieve full path to a file

var fullNames = files.Select(file => file.FullName).ToArray();

Check

This code on my machine:

FileInfo[] files = null;
string path = @"C:\temp";
DirectoryInfo folder = new DirectoryInfo(path);
files = folder.GetFiles("*.*", SearchOption.AllDirectories);

//you need string from FileInfo to denote full path
IEnumerable<string> fullNames = files.Select(file => file.FullName);

Console.WriteLine ( string.Join(Environment.NewLine, fullNames ) );

prints

C:\temp\1.dot 
C:\temp\1.jpg 
C:\temp\1.png 
C:\temp\1.txt 
C:\temp\2.png 
C:\temp\a.xml 
...

Full solution

The solution to your problem might look like this:

string path = @"C:\temp";
DirectoryInfo folder = new DirectoryInfo(path);
var directories = folder.GetDirectories("*.*", SearchOption.AllDirectories);


IEnumerable<string> directoriesWithDot = 
 directories.Where(dir => dir.Name.Contains("."))
            .Select(dir => dir.FullName);


IEnumerable<string> filesInDirectoriesWithoutDot = 
 directories.Where(dir => !dir.Name.Contains("."))
            .SelectMany(dir => dir.GetFiles("*.*", SearchOption.TopDirectoryOnly))
            .Select(file => file.FullName);


Console.WriteLine ( string.Join(Environment.NewLine, directoriesWithDot.Union(filesInDirectoriesWithoutDot) ) );

Upvotes: 32

Henk Holterman
Henk Holterman

Reputation: 273844

Each FileInfo object has a FullName property.


But if folder contains point in name (C:\bla\bla\test.0.1), result contains path to folder without file

This is an entirely different issue with possibly diffeent answers/workarounds. Can you be more specific?
I cannot reproduce this.

Upvotes: 7

Soner G&#246;n&#252;l
Soner G&#246;n&#252;l

Reputation: 98868

You can use FileSystemInfo.FullName property.

Gets the full path of the directory or file.

Upvotes: 0

Mohammad Arshad Alam
Mohammad Arshad Alam

Reputation: 9862

you can try this :

void GetFiles()
    {
        DirectoryInfo d= new DirectoryInfo(strFolderPath);
       //file extension for pdf
        var files = d.GetFiles("*.pdf*");
        FileInfo[] subfileInfo = files.ToArray<FileInfo>();

        if (subfileInfo.Length > 0)
        {
            for (int j = 0; j < subfileInfo.Length; j++)
            {
                bool isHidden = ((File.GetAttributes(subfileInfo[j].FullName) & FileAttributes.Hidden) == FileAttributes.Hidden);
                if (!isHidden)
                {
                    string strExtention = th.GetExtension(subfileInfo[j].FullName);
                    if (strExtention.Contains("pdf"))
                    {                            
                        string path = subfileInfo[j].FullName;
                        string name = bfileInfo[j].Name;                           
                    }
                }
            }
        }

Upvotes: 0

David
David

Reputation: 16287

public static IEnumerable<string> GetAllFilesRecursively(string inputFolder)
    {
        var queue = new Queue<string>();
        queue.Enqueue(inputFolder);
        while (queue.Count > 0)
        {
            inputFolder = queue.Dequeue();
            try
            {
                foreach (string subDir in Directory.GetDirectories(inputFolder))
                {
                    queue.Enqueue(subDir);
                }
            }
            catch (Exception ex)
            {
                Console.Error.WriteLine("GetAllFilesRecursively: " + ex);
            }
            string[] files = null;
            try
            {
                files = Directory.GetFiles(inputFolder);
            }
            catch (Exception ex)
            {
                Console.Error.WriteLine("GetAllFilesRecursively: " + ex);
            }
            if (files != null)
            {
                for (int i = 0; i < files.Length; i++)
                {
                    yield return files[i];
                }
            }
        }
    }

Upvotes: 0

LukeHennerley
LukeHennerley

Reputation: 6444

You need to use FileInfo.

Directory.GetFiles("", SearchOption.AllDirectories).Select(file => new FileInfo(file).FullName);

Upvotes: 1

Related Questions