jtseltmann
Programmer
Can anyone help me understand why the following is failing?
'---
Dim fso as object
Set fso = CreateObject("Scripting.FileSystemObject")
fso.CreateFolder "H:\data\temp"
'---
I get a 76 - path not found error every time
If I change the above code to run this it works...
fso.CreateFolder "H:\data"
fso.CreateFolder "H:\data\temp"
I don't understand why the first is failing. I'm trying to determine if a new server setting has caused this new error? Anyone have any thoughts?
Thanks.
'---
Dim fso as object
Set fso = CreateObject("Scripting.FileSystemObject")
fso.CreateFolder "H:\data\temp"
'---
I get a 76 - path not found error every time
If I change the above code to run this it works...
fso.CreateFolder "H:\data"
fso.CreateFolder "H:\data\temp"
I don't understand why the first is failing. I'm trying to determine if a new server setting has caused this new error? Anyone have any thoughts?
Thanks.