I have this code to get files from a folder location on my hard drive.

How can I get all files from sub folders in this folder?

vb.net Code:
  1. Dim FileLocation As String = "C:\MyFiles\"
  2.             Dim di As New IO.DirectoryInfo(FileLocation)
  3.             Dim Files As IO.FileInfo() = di.GetFiles()