在网页中添加链接到 Windows 资源管理器窗口的链接吗?
我的客户想要添加网页链接。单击该链接后,Windows 资源管理器将打开并转到 FTP 站点(例如,ftp://ftp.domain。 com/)。我尝试了以下 HTML
<a href="ftp://ftp.domain.com/">ftp://ftp.domain.com/</a>
不幸的是,这将在网络浏览器中打开 FTP 站点,该站点仅支持下载但不支持上传。
我更喜欢跨浏览器解决方案,但仅限 IE 的解决方案也可以。
My client wants to add a link to a webpage. When the link is clicked, Windows Explorer will open and go to an FTP site (e.g., ftp://ftp.domain.com/). I tried the following HTML
<a href="ftp://ftp.domain.com/">ftp://ftp.domain.com/</a>
Unfortunately, this will open the FTP site in the web browser which supports downloading only but not uploading.
I prefer a cross-browser solution, but an IE-only solution would be fine as well.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您确定匿名用户确实可以上传文件吗?
您可以使用以下方法提供用户名/密码组合:
如果失败,您只能编写一个基于 Web 的 FTP 客户端。
编辑: AFAIK 用于打开协议(在本例中为 FTP)的程序是由浏览器定义的,这是您无法更改的。
Are you sure anonymous users can actually upload files?
You can supply a username/password combination by using:
If that fails, there's nothing you can do short of writing a web-based FTP client.
EDIT: AFAIK What program is used to open a protocol (FTP in this case) is defined by the browser and that's something you can't change.
如果您希望能够上传具有写入权限的指定凭据:
但我不确定 IE 是否接受这一点。
If you want to be able to upload specify credentials that have write permission:
But i'm not sure IE accepts that.