找到浏览器默认下载文件夹的路径

发布于 2025-01-08 02:57:44 字数 167 浏览 0 评论 0原文

我们如何在c#/asp.net中找到浏览器默认下载文件夹的路径?

例如,我可以获取用户桌面的路径,例如:

Environment.GetFolderPath(Environment.SpecialFolder.Desktop)

谢谢..

how can we find the path of browser default downloads folder in c# / asp.net?

For example I can get the path of user desktop like :

Environment.GetFolderPath(Environment.SpecialFolder.Desktop)

Thanks..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

世界如花海般美丽 2025-01-15 02:57:45

您无法在网络应用程序中找到它。由用户决定使用哪个浏览器、如何配置浏览器以及默认保存下载文件的位置,您绝对无法干扰甚至无法从 Web 应用程序中了解他的选择。

You can't find that out in a web application. It's up to the user to decide which browser to use and how to configure it and where to save downloaded files by default and you have absolutely no way of interfering or even knowing his choices from a web application.

木格 2025-01-15 02:57:45

首先,在 Environment.SpecialFolder 上查看 MSDN,没有下载文件夹,原因是每个浏览器的下载文件夹都不同。

http://msdn.microsoft.com/en-us/library /system.environment.specialfolder.aspx

与asp.net无关,如果你从服务器端查看它,你只是得到一个不知道在哪里的目录,这意味着这与Web应用程序无关在泳池下面运行的。

您可以做什么

您可以使用 HttpRuntime.AppDomainAppPath 并使用它来了解您的网站所在的位置,并放置一个“下载”目录并使用此完整路径:

HttpRuntime.AppDomainAppPath + "download/"

用于下载/上传文件。

First of all looking at MSDN on Environment.SpecialFolder there is no download folder, and the reason is that this is different for every browser.

http://msdn.microsoft.com/en-us/library/system.environment.specialfolder.aspx

And there have nothing to do with asp.net, if you look it from the server side you just get a directory on nowhere, meaning that this have nothing to do with the web application that run under the pool.

What you can do

You can use the HttpRuntime.AppDomainAppPath and use it to know where your site lives, and there place a "download" directory and use this full path:

HttpRuntime.AppDomainAppPath + "download/"

for download/upload files.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文