通过 IIS 访问文件服务器上的文件
在我们正在开发的应用程序中,我可以访问数据库表,该表为我提供了文件服务器上可用的某些文件的路径。可以从运行 IIS 的计算机访问此文件服务器。是否有一种机制可以用来(按需)将给定文件从文件服务器复制到 Web 服务器并使给定用户可以下载该文件?
In an application we are developing, I have access to a database table which gives me the path to some files that are available on a file server. This file server is accessible from the machine on which IIS is running. Is there a mechanism I can use to (on demand) copy a given file from the file server to the web server and make the file available for download by a given user?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,使用 Web 应用程序中的 SMB 协议从映射的网络移动文件驱动器(从文件服务器到网络服务器),然后将其提供给客户端。
您可以直接从文件服务器提供服务。
这里还有一些信息。
Yes, use the SMB protocol from a web-application to move the file over from a network mapped drive (from the file-server to the network server) and then serve it up to the client.
You could just serve straight from the file server.
Here is some more info.