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.Direc tory.CreateDire ctory("C:
\" & fDIR)
Dim fs As New FileStream("c:\ " & fDIR & "\" &
filename, FileMode.Create New, FileAccess.Writ e)
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.Direc tory.CreateDire ctory("C:
\" & fDIR)
Dim fs As New FileStream("c:\ " & fDIR & "\" &
filename, FileMode.Create New, FileAccess.Writ e)
Any help would be great
Comment