Ive run into a bit of a problem Im trying to download selected files from an arbitrary web page. The image files are to be written to a directory.
private local as string = "./images"
Dim FileStreamer As New FileStream(local, FileMode.Create)
now I have tryed this but Im getting a error indicatiing that I dont have permission? This is wierd as if I pass in a location to my method the code works fine. Anyone got some advice or a nice reference site?
private local as string = "./images"
Dim FileStreamer As New FileStream(local, FileMode.Create)
now I have tryed this but Im getting a error indicatiing that I dont have permission? This is wierd as if I pass in a location to my method the code works fine. Anyone got some advice or a nice reference site?