Can anyone tell me how to create, read, write to, etc. files in VB using the UNC, instead of the drive mappings?
Currently, I do things like,
Is there a way to do the same thing, but instead of using "q:\test.txt", use "\\myserver\myshare\test.txt"??
Thanks!!! Mike K
Currently, I do things like,
Code:
sub mike()
dim fso as new filesystemobject, ts as textstream
set ts=fso.createtextfile("q:\temp.txt")
ts.writeline "this is a test"
ts.close
end sub
Is there a way to do the same thing, but instead of using "q:\test.txt", use "\\myserver\myshare\test.txt"??
Thanks!!! Mike K