asp.net - Use mapped network drive with FileUpload control -


my asp.net 3.5 application installed on server 1. in server have mapped network drive q:

when try use saveas of file upload control, hard coding path as:

fileupload1.saveas("q:\myfiles\") & fileupload1.filename) 

it gives error: path not found.

how put network drive path saveas?

drive mappings per user, user site runs on has no idea of mappings. best way fix use unc paths instead, there no need drive mappings.

so if map server x's share share q, instead save \\x\share\+whatever

fileupload1.saveas("\\x\share\myfiles\") & fileupload1.filename) 

Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -