devxlogo

Using xp_ dirtree to List Folders, Subfolders and Files with SQL

Using xp_ dirtree to List Folders, Subfolders and Files with SQL

You can use an undocumented Extended Stored Procedure named xp_dirtree to list folders, subfolders, and files for a given path. Xp_dirtree has three parameters that need to be supplied:

  • directory?- The given directory.
  • depth?- How many subfolder levels to display. 0 will display all subfolders.
  • file?- This will either display files as well as each folder. 0 will not display any files.

Here’s an example of its usage:

DECLARE @DBName nvarchar(100)DECLARE @Folder nvarchar(100)SET @DBName = 'TestDB'SET @Folder = 'C:TestFolder' + @DBNameEXEC master.sys.xp_dirtree @Folder, 0, 1; 
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist