Hey all. I just purcahsed a shared hosting account with goDaddy only to find they have the system.io namespace blocked for security reasons. I create custom Content Management Systems for my clients and need the ability to upload files and read the contents of directories.
How can I do this without using System.IO I figured FTP could be a way, but I couldn't find a lot of examples ut there using ftp with c# to upload files or read directories.
It doesn't have to be FTP, it can be any other way, but does anyone know how
Thanks

reading directories and uploading without system.io
dzimmy
SavasCilve
Do you suggest someone other than goDaddy This is my first time using them and the only reason I use them is because they seem to be the cheapest 2.0/SQL hosting I could find.
DLG007
How do you know it is blocked Have you tried using some code If so what code have you tried to use Do you get an actual exception when using System.IO And if so what exception and how
You should be able to access files within your directory and you can make sure you stay in your directories by doing a System.IO.Path.Combine(Server.MapPath("~/"), "foldrepath")
Bakerboy60
Having to maintain boxes here at work and have to deal with IIS and AppPools, DNS and all that *** from 8-5 is enough for me. I definately don't want to pay that much for a Virtual or Dedicated server and have to deal with the same stuff at home.
Surit Roy
I've only been using C# for 6 or 7 months and I'm used to developing and publishing to our own local servers. I emailed godaddy twice about this and all they said was it wasn't possible, of course a lot of the guys in support aren't developers and are getting their answers from a database.
I'm assuming this will work for uploading too - I'll give it a shot.
Thanks again!
Fantonis