devxlogo

Using xp_create_subdir to Create Windows Folders with SQL

Did you know that you can create Folders with T-SQL? With the help of the built-in Extended Stored Procedure named xp_create_subdir you can. Here is a small example:

DECLARE @DBName nvarchar(100)DECLARE @Folder nvarchar(100)SET @DBName = 'TestDB'SET @Folder = 'C:TestFolder' + @DBNameEXEC master.dbo.xp_create_subdir @Folder

It goes without saying that you need to ensure that the correct permissions are set up in your SQL environment.

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

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.