ruta obtener nombre manipular explorador directorios directorio carpeta archivos archivo abrir c# directory subdirectories getdirectories

c# - obtener - Listar todos los archivos y directorios en un directorio+subdirectorios



obtener ruta de carpeta c# (9)

Quiero enumerar todos los archivos y directorios contenidos en un directorio y subdirectorios de ese directorio. Si elegí C: / como el directorio, el programa obtendría cada nombre de cada archivo y carpeta en el disco duro al que tenía acceso.

Una lista puede parecerse

fd/1.txt fd/2.txt fd/a/ fd/b/ fd/a/1.txt fd/a/2.txt fd/a/a/ fd/a/b/ fd/b/1.txt fd/b/2.txt fd/b/a fd/b/b fd/a/a/1.txt fd/a/a/a/ fd/a/b/1.txt fd/a/b/a fd/b/a/1.txt fd/b/a/a/ fd/b/b/1.txt fd/b/b/a


El siguiente ejemplo es el más rápido (no paralelizado) de los archivos de la lista de rutas y subcarpetas en un árbol de directorios que maneja excepciones. Sería más rápido usar Directory.EnumerateDirectories usando SearchOption.AllDirectories para enumerar todos los directorios, pero este método fallará si acierta una excepción de acceso no autorizada o PathTooLongException.

Utiliza el tipo de colección Stack genérica, que es una pila de último en entrar primero en salir (LIFO) y no usa recursividad. Desde https://msdn.microsoft.com/en-us/library/bb513869.aspx , le permite enumerar todos los subdirectorios y archivos y tratar eficazmente esas excepciones.

public class StackBasedIteration { static void Main(string[] args) { // Specify the starting folder on the command line, or in // Visual Studio in the Project > Properties > Debug pane. TraverseTree(args[0]); Console.WriteLine("Press any key"); Console.ReadKey(); } public static void TraverseTree(string root) { // Data structure to hold names of subfolders to be // examined for files. Stack<string> dirs = new Stack<string>(20); if (!System.IO.Directory.Exists(root)) { throw new ArgumentException(); } dirs.Push(root); while (dirs.Count > 0) { string currentDir = dirs.Pop(); string[] subDirs; try { subDirs = System.IO.Directory.EnumerateDirectories(currentDir); //TopDirectoryOnly } // An UnauthorizedAccessException exception will be thrown if we do not have // discovery permission on a folder or file. It may or may not be acceptable // to ignore the exception and continue enumerating the remaining files and // folders. It is also possible (but unlikely) that a DirectoryNotFound exception // will be raised. This will happen if currentDir has been deleted by // another application or thread after our call to Directory.Exists. The // choice of which exceptions to catch depends entirely on the specific task // you are intending to perform and also on how much you know with certainty // about the systems on which this code will run. catch (UnauthorizedAccessException e) { Console.WriteLine(e.Message); continue; } catch (System.IO.DirectoryNotFoundException e) { Console.WriteLine(e.Message); continue; } string[] files = null; try { files = System.IO.Directory.EnumerateFiles(currentDir); } catch (UnauthorizedAccessException e) { Console.WriteLine(e.Message); continue; } catch (System.IO.DirectoryNotFoundException e) { Console.WriteLine(e.Message); continue; } // Perform the required action on each file here. // Modify this block to perform your required task. foreach (string file in files) { try { // Perform whatever action is required in your scenario. System.IO.FileInfo fi = new System.IO.FileInfo(file); Console.WriteLine("{0}: {1}, {2}", fi.Name, fi.Length, fi.CreationTime); } catch (System.IO.FileNotFoundException e) { // If file was deleted by a separate application // or thread since the call to TraverseTree() // then just continue. Console.WriteLine(e.Message); continue; } catch (UnauthorizedAccessException e) { Console.WriteLine(e.Message); continue; } } // Push the subdirectories onto the stack for traversal. // This could also be done before handing the files. foreach (string str in subDirs) dirs.Push(str); } } }


Me temo que el método GetFiles devuelve la lista de archivos, pero no los directorios. La lista en la pregunta me indica que el resultado también debe incluir las carpetas. Si desea una lista más personalizada, puede intentar llamar a GetFiles y GetDirectories recursivamente. Prueba esto:

List<string> AllFiles = new List<string>(); void ParsePath(string path) { string[] SubDirs = Directory.GetDirectories(path); AllFiles.AddRange(SubDirs); AllFiles.AddRange(Directory.GetFiles(path)); foreach (string subdir in SubDirs) ParsePath(subdir); }

Sugerencia: puede usar las clases FileInfo y DirectoryInfo si necesita verificar algún atributo específico.


Si no tiene acceso a una subcarpeta dentro del árbol de directorios, Directory.GetFiles se detiene y arroja la excepción que da como resultado un valor nulo en la cadena de recepción [].

Aquí, vea esta respuesta https://.com/a/38959208/6310707

Gestiona la excepción dentro del ciclo y continúa trabajando hasta que se atraviesa toda la carpeta.


Use los métodos GetDirectories y GetFiles para obtener las carpetas y archivos.

Use SearchOption AllDirectories para obtener las carpetas y archivos en las subcarpetas también.


la forma lógica y ordenada:

using System; using System.Collections.Generic; using System.IO; using System.Reflection; namespace DirLister { class Program { public static void Main(string[] args) { //with reflection I get the directory from where this program is running, thus listing all files from there and all subdirectories string[] st = FindFileDir(Path.GetDirectoryName(Assembly.GetEntryAssembly().Location)); using ( StreamWriter sw = new StreamWriter("listing.txt", false ) ) { foreach(string s in st) { //I write what I found in a text file sw.WriteLine(s); } } } private static string[] FindFileDir(string beginpath) { List<string> findlist = new List<string>(); /* I begin a recursion, following the order: * - Insert all the files in the current directory with the recursion * - Insert all subdirectories in the list and rebegin the recursion from there until the end */ RecurseFind( beginpath, findlist ); return findlist.ToArray(); } private static void RecurseFind( string path, List<string> list ) { string[] fl = Directory.GetFiles(path); string[] dl = Directory.GetDirectories(path); if ( fl.Length>0 || dl.Length>0 ) { //I begin with the files, and store all of them in the list foreach(string s in fl) list.Add(s); //I then add the directory and recurse that directory, the process will repeat until there are no more files and directories to recurse foreach(string s in dl) { list.Add(s); RecurseFind(s, list); } } } } }


Directory.GetFileSystemEntries existe en .NET 4.0+ y devuelve ambos archivos y directorios. Llámalo así:

string[] entries = Directory.GetFileSystemEntries( path, "*", SearchOption.AllDirectories);

Tenga en cuenta que no va a hacer frente a los intentos de listar el contenido de los subdirectorios a los que no tiene acceso (UnauthorizedAccessException), pero puede ser suficiente para sus necesidades.


public static void DirectorySearch(string dir) { try { foreach (string f in Directory.GetFiles(dir)) { Console.WriteLine(Path.GetFileName(f)); } foreach (string d in Directory.GetDirectories(dir)) { Console.WriteLine(Path.GetFileName(d)); DirectorySearch(d); } } catch (System.Exception ex) { Console.WriteLine(ex.Message); } }


string[] allfiles = System.IO.Directory.GetFiles("path/to/dir", "*.*", System.IO.SearchOption.AllDirectories);

donde *.* es un patrón para unir archivos

Si el Directorio también es necesario, puede ir así:

foreach ( var file in allfiles){ FileInfo info = new FileInfo(file); // Do something with the Folder or just add them to a list via nameoflist.add(); }


using System.IO; using System.Text; string[] filePaths = Directory.GetFiles(@"path", "*.*", SearchOption.AllDirectories);