K
kathy30
I'm storing files in SQL and retrieving them when needed to the user's
C: Drive
This is accessed on our Intranet site, the problem is the create
directory and saving files happens on the Server not the User's PC
Here is the code
System.IO.Directory.CreateDirectory("C:
\" & fDIR)
Dim fs As New FileStream("c:\" & fDIR & "\" &
filename, FileMode.CreateNew, FileAccess.Write)
Any help would be great
C: Drive
This is accessed on our Intranet site, the problem is the create
directory and saving files happens on the Server not the User's PC
Here is the code
System.IO.Directory.CreateDirectory("C:
\" & fDIR)
Dim fs As New FileStream("c:\" & fDIR & "\" &
filename, FileMode.CreateNew, FileAccess.Write)
Any help would be great