creating new folders with asp.net

Im not sure how much you guys know about asp.net but im working on a folder directory system where i can upload files, change directories etc. Everything works fine except for creating a new directory. it works fine on the testing server and everything works when i upload it except for creating a new folder. I have even tried hard coding it but no file can be created. has anyone successfully done something like this on jodohosts servers?

http://www.pixellab.ca/fileexplorer/fileExplorer.aspx



i get the error

System.IO.DirectoryNotFoundException: Could not find a part of the path "D:\". at System.IO.__Error.WinIOError(Int32 errorCode, String str) at System.IO.Directory.InternalCreateDirectory(String fullPath, String path) at System.IO.Directory.CreateDirectory(String path) at pixellab.fileExplorer.btnNewFolder_Click(Object sender, EventArgs e)


which is odd because the same path is used to upload files but it works fine.
 
Back
Top