VB.NET || How To Get A List Of Files At A Given Path Directory Using VB.NET

Print Friendly, PDF & Email

The following is a module with functions which demonstrates how to get a list of files at a given directory path using VB.NET.

The function demonstrated on this page returns a list of System.IO.FileInfo, which contains information about the files in the given directory.


1. Get Files In Directory

The example below demonstrates the use of ‘Utils.GetFilesInDirectory‘ to get a list of files at a given path directory.

The optional function parameter lets you specify the search option. This lets you specify whether to limit the search to just the current directory, or expand the search to the current directory and all subdirectories when searching for files.


2. Utils Namespace

The following is the Utils Namespace. Include this in your project to start using!


3. More Examples

Below are more examples demonstrating the use of the ‘Utils‘ Namespace. Don’t forget to include the module when running the examples!

QUICK NOTES:
The highlighted lines are sections of interest to look out for.

The code is heavily commented, so no further insight is necessary. If you have any questions, feel free to leave a comment below.

Was this article helpful?
👍 YesNo

Leave a Reply