I need to create a directory on a computer over a network.
(i.e. create a directory "\\remotecomp\test") I found on this site that will create a directory on a local machine. Is there anyway to do this?
Thanks
Printable View
I need to create a directory on a computer over a network.
(i.e. create a directory "\\remotecomp\test") I found on this site that will create a directory on a local machine. Is there anyway to do this?
Thanks
Try the MkDir function.
Like this
Don't forget the "\\" instead of "\". :)Code:MkDir ("\\<Network Computer Name>\<Your New Dir Name.")