How can I check if network directory exist and if not make it something like this
... but i don't want to use FileSystemObject.Code:Dim exists As Boolean Dim fso As FileSystemObject Set fso = New FileSystemObject networkPath="\\NAS\Conta\Date\eFactura\35182401" exists = fso.FolderExists(networkPath) If Not exists Then fso.CreateFolder (networkPath) End If




Reply With Quote