Re: Create a folder on a remote server by Ray
Ray
Tue Oct 21 08:17:23 CDT 2003
Use a UNC path. Other than that, it's the same way.
Dim oFSO
Set oFSO = CreateObject("Scripting.FileSystemboject")
oFSO.CreateFolder "\\server\share\NEW FOLDER"
Set oFSO = Nothing
Ray at work
"NicNac" <NoSpam@dodo.com.au> wrote in message
news:eh5jr47lDHA.976@tk2msftngp13.phx.gbl...
> create a folder on a remote server?
>
> how do I do this,
>
> The only script examples I can find, create a folder on the local machine
> only.
>
> TIA
>
>