Swood
12-20-2004, 11:02 AM
Hi ,
I am trying to figure out how to have a client app (windows forms) create a directory on my web site.
I don't think you can map a drive letter . I tried this
Dim DInfo As DirectoryInfo = New DirectoryInfo(FilePath & "\" & JobYear.ToString & " Projects")
If Not DInfo.Exists Then
DInfo.Create()
End If
But I get an error that says (does not accept URI format)
P.S. Filepath = http://mysite.com/
I am trying to figure out how to have a client app (windows forms) create a directory on my web site.
I don't think you can map a drive letter . I tried this
Dim DInfo As DirectoryInfo = New DirectoryInfo(FilePath & "\" & JobYear.ToString & " Projects")
If Not DInfo.Exists Then
DInfo.Create()
End If
But I get an error that says (does not accept URI format)
P.S. Filepath = http://mysite.com/