网站 - 下载链接

发布于 2025-01-01 17:42:09 字数 194 浏览 2 评论 0原文

我只是在玩弄 HTML,并且想要创建一个链接来访问磁盘上特定位置(而不是网页源代码所在的磁盘)中的文件。

我尝试执行以下操作:

下载我的文件

但这无法访问该文件并给出错误。

可能是什么问题,我该如何解决?

谢谢!

I'm just playing around with HTML, and wanted to create a link to access a file in a particular location on the disk (not on the disk where the source code of the web page is located).

I have tried to do the following:

<a href="D:\MyDoc.pdf">Download My File</a>

but this cannot access the file and gives an error.

What can be the problem, and how do I fix it?

Thanks!

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

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

发布评论

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

评论(2

友谊不毕业 2025-01-08 17:42:09

这应该有效!只需在链接 URL 中添加 file:///

<a href="file:///D:\MyDoc.pdf">Download My File</a>

这仅在您离线运行应用程序时才有效。

This should work! Just add file:/// in the link URL

<a href="file:///D:\MyDoc.pdf">Download My File</a>

This will only work if you run the Application offline.

情仇皆在手 2025-01-08 17:42:09

没有办法用纯 html 来做到这一点。您将需要使用动态 Web 技术,例如 php 或 Asp.net。

如果您只需更改该链接的路径就可以从 Web 服务器下载任何您想要的文件,您能想象安全问题吗?

There is no way you can do this with pure html. You will need to use a dynamic web technology such as php or Asp.net.

Can you imagine the security issues if you could download any file you wanted off the web server just by changing path of that link?

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