Answers for "vba create directory"

VBA
3

vba create directory

'requires reference to Microsoft Scripting Runtime
Function MkDir(ByVal strDir As String, ByVal strPath As String)
  	Dim fso As New FileSystemObject
  	Dim path As String
	path = strPath & strDir
	If Not fso.FolderExists(path) Then
	    fso.CreateFolder path
	End If
End Function
Posted by: Guest on May-21-2021

Code answers related to "VBA"

Browse Popular Code Answers by Language