10

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:

  • 0 C:\bla\bla\bla\text.exe
  • 1 C:\bla\bla\test.0.1
  • 2 C:\bla\text.exe

etc.

default
  • 11,485
  • 9
  • 66
  • 102
user1775334
  • 161
  • 1
  • 1
  • 7
  • *contains point in name* - do you mean a dot `.`? – default Mar 18 '13 at 13:03
  • yep, for example: C:\Windows\winsxs\amd64_1394.inf.resources_31bf3856ad364e35_6.1.7600.16385_en-us_beafdf583b909e3f – user1775334 Mar 18 '13 at 13:04
  • 1
    no, not for example. please explain what you mean *exactly* – default Mar 18 '13 at 13:05
  • @Aschratt [DirectoryInfo.GetFiles](http://msdn.microsoft.com/en-us/library/ms143327.aspx) **does** return `FileInfo[]`! – default Mar 18 '13 at 13:15
  • @Default: Yes, sorry... I mixed it up with `Directory.GetFiles()` (http://msdn.microsoft.com/en-us/library/wz42302f.aspx) – Carsten Mar 18 '13 at 13:33
  • 1
    @Aschratt well, you still got the reputation for it, so it's still a small win for you I guess :) I guess I should blame the approvers for not proofreading... – default Mar 18 '13 at 13:42

6 Answers6

29

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) ) );
Ilya Ivanov
  • 23,148
  • 4
  • 64
  • 90
6

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.

H H
  • 263,252
  • 30
  • 330
  • 514
1

You need to use FileInfo.

Directory.GetFiles("", SearchOption.AllDirectories).Select(file => new FileInfo(file).FullName);
LukeHennerley
  • 6,344
  • 1
  • 32
  • 50
0
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];
                }
            }
        }
    }
David
  • 15,894
  • 22
  • 55
  • 66
0

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;                           
                    }
                }
            }
        }
Mohammad Arshad Alam
  • 9,694
  • 6
  • 38
  • 61
0

You can use FileSystemInfo.FullName property.

Gets the full path of the directory or file.

Soner Gönül
  • 97,193
  • 102
  • 206
  • 364