vote up 0 vote down star

The FileUpload control requires me to provide a rooted directory in the SaveAs() method. However, I would much rather the uploaded files go into a virtual directory, such as "~/UserFiles/[username]/[filename]". Is there a way for me to accomplish that?

flag

Be aware of what you are doing when an upload goes directly to a folder which is accessible from your web server. Seems like you are opening up a severe vulnerability. – divo Mar 6 at 9:41

3 Answers

vote up 4 vote down check

Use the pages MapPath method:-

ctl.SaveAs(MapPath("~/UserFiles/[username]/[filename]"));
link|flag
Thanks. Everything makes sense now. – Tom V Mar 6 at 7:39
ummm . . . is there a way for me to create "~/userdata/[username]" if it doesn't already exist? – Tom V Mar 6 at 7:55
System.IO.Directory.CreateDirectory(MapPath("~/userdata/[username]")); – AnthonyWJones Mar 6 at 8:23
vote up 0 vote down

No, the keyword is requires. You can use your script to copy the file after the download.

link|flag
Hmmm. Do you know what the rationale is for requiring a rooted directory for this control? It seems crazy to me. – Tom V Mar 6 at 7:32
The rational is that its a physical file path since you are saving to the file system. Paths in URLs are logical paths not physical. Quite likely many uses will save the file to somewhere outside of the folders representing the website. – AnthonyWJones Mar 6 at 7:35
Yeah. But in my case, the users don't have any control over where the file is saved. Only my program does. – Tom V Mar 6 at 7:40
vote up 0 vote down

Sometimes the MapPath is not directly accessible.

In this case use

ctl.SaveAs(Server.MapPath("~/UserFiles/[username]/[filename]"));
link|flag
is there a way for me to create "~/userdata/[username]" if it doesn't already exist? – Tom V Mar 6 at 7:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.