Hello
I have written code to map a network drive. The code will then copy a certain file to the drive, and remove the mapping after 3 seconds.
The letter Z is used to map. Please go through the code and change to suit.
VB:
Sub tst()
Const sSource As String = "C:\testfile.xlsx"
With CreateObject("WScript.Network")
.MapNetworkDrive "Z:", "\\FSERVER1\infomay"
If Len(Dir(sSource)) Then CreateObject("Scripting.FileSystemObject").copyfile sSource, "Z:\"
Application.Wait Now + TimeSerial(0, 0, 3)
On Error Resume Next
.RemoveNetworkDrive "Z:"
On Error Goto 0
End With
End Sub
This code works fine for me, but I am not sure you will be able to adapt for Sharepoint. Not an expert there, sorry.
Bookmarks