ayi <t>Use System.IO.Directory.CreateDirectory.<br/> <br/> According to the official ".NET" docs, you don't need to check if it exists first.<br/> <br/> System.io > Directory > Directory.CreateDirectory<br/> <br/> Any and all directories specified in path are created, unless they already exist or unless some part of path is invalid. If the directory already exists, this method does not create a new directory, but it returns a DirectoryInfo object for the existing directory.<br/> <br/> — learn.microsoft.com/dotnet/api/</t>