Accessing your web space from a Windows forms client App

Discussion in 'Visual Studio' started by Swood, Dec 20, 2004.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. 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/
     
  2. Bruce

    Bruce DiscountASP.NET Staff

    You cannot do tht.

    the directoryinfo class can only access your computer's HD or network drive.

    Bruce

    DiscountASP.NET
    www.DiscountASP.NET
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page