Recursive Directory Info : Directory « File Directory « VB.Net






Recursive Directory Info

Recursive Directory Info
 
Imports System
Imports System.IO

Public Class MainClass

  Shared Sub Main()

    Dim nameOfDirectory As String = "C:\"
    Dim myDirectory As DirectoryInfo
    myDirectory = New DirectoryInfo(nameOfDirectory)
    WorkWithDirectory(myDirectory)

  End Sub

  Shared Public Sub WorkWithDirectory(ByVal aDir As DirectoryInfo)
    Dim nextDir As DirectoryInfo
    WorkWithFilesInDir(aDir)
    For Each nextDir In aDir.GetDirectories
      WorkWithDirectory(nextDir)
    Next
  End Sub

  Shared Public Sub WorkWithFilesInDir(ByVal aDir As DirectoryInfo)
    Dim aFile As FileInfo
    For Each aFile In aDir.GetFiles()
      Console.WriteLine(aFile.FullName)
    Next
  End Sub

  
End Class


           
         
  








Related examples in the same category

1.Get all directories
2.Display Directory TreeDisplay Directory Tree
3.List files and directories in rootList files and directories in root
4.Directory Information: name, last update and create timeDirectory Information: name, last update and create time
5.Update Directory: create time, last access time and last write timeUpdate  Directory: create time, last access time and last write time
6.Get Root directory and current directoryGet Root directory and current directory
7.Directory SeparatorDirectory Separator
8.Get Current DirectoryGet Current Directory
9.Get file in the parent folder Get file in the parent folder
10.Display all file under a DirectoryDisplay all file under a Directory
11.Find a file: search directory recursively
12.Directory Class Exposes static methods for creating, moving, and enumerating through directories and subdirectories
13.Move the directory
14.Count the files in a directory
15.Calculate the size of a directory and its subdirectories and displays the total size in bytes.
16.Gets or sets the attributes for the current file or directory.
17.FileSystemInfo.LastAccessTime Gets or sets the time the current file or directory was last accessed.
18.Path Class performs operations on file or directory path
19.Directory.CreateDirectory
20.Directory.Delete deletes an empty directory from a specified path.
21.Deletes the specified directory and subdirectories and files in the directory.
22.Directory.EnumerateDirectories returns an enumerable collection of directory names in a specified path.
23.Returns an enumerable collection of directory names that match a search pattern in a specified path.
24.Returns directory names that match a search pattern in a specified path, and optionally searches subdirectories.
25.Determines whether the given path refers to an existing directory on disk.
26.Gets the creation date and time of a directory.
27.Gets the creation date and time, in Coordinated Universal Time (UTC) format, of a directory.
28.Gets the current working directory of the application.
29.Gets the names of subdirectories in the specified directory.
30.Gets an array of directories matching the specified search pattern from the current directory.
31.Returns the names of files (including their paths) that match the specified search pattern in the specified directory.
32.Returns the date and time the specified file or directory was last accessed.
33.Returns the date and time the specified file or directory was last written to.
34.Sets the date and time the specified file or directory was last accessed.
35.Sets the date and time a directory was last written to.
36.Returns an enumerable collection of file names in a specified path.
37.Returns file names that match a search pattern in a specified path.
38.Returns file names that match a search pattern in a specified path, and optionally searches subdirectories.
39.Returns the volume information, root information, or both for the specified path.