S
Scott D
I am using the following code to create a folder:
FSO = Server.CreateObject("Scripting.FileSystemObject")
Folder = FSO.CreateFolder("c:\" & Me.textbox1.Text & "_" &
Me.textbox2.Text & "_" & newString)
I have no problem creating the folder on a local drive. However, when
I attempt to create the folder using a UNC name (i.e. \\server\share)
I receive a login error. Does anyone know how to pass credentials to
the CreateFolder object? If not is there another way I can accomplish
creating folders on a remote share?
FSO = Server.CreateObject("Scripting.FileSystemObject")
Folder = FSO.CreateFolder("c:\" & Me.textbox1.Text & "_" &
Me.textbox2.Text & "_" & newString)
I have no problem creating the folder on a local drive. However, when
I attempt to create the folder using a UNC name (i.e. \\server\share)
I receive a login error. Does anyone know how to pass credentials to
the CreateFolder object? If not is there another way I can accomplish
creating folders on a remote share?