File copy to sharepoint using MS Access

J

James

I just upgraded to MS access 2003. is there a command like filecopy that
will let me copy a file, like test.pdf or test.cvs, from drive c:\ to a
sharepoint site. If yes, can you please provide me sample code. Thank you
 
A

Alex Dybenko

Hi,
you can try to map drive to sharepoint folder and then copy to it:

from a CMD.EXE prompt
net use x: "http://www.mywebserver.com/Shared Documents"
/user:DOMAIN\Username PASSWORD

hit enter and you will find that X: is mapped to your Shared Documents
folder.
 
Top