我最近有一个项目,在任何地方都找不到简单的代码..希望这对某人有所帮助!确保为文件夹上的 IIS 应用程序帐户设置 NTFS 权限。使用 file:// 表示文件 http:// 表示直接链接,其他表示相对链接。
<%
dim fs,fo,x
set fs=Server.CreateObject("Scripting.FileSystemObject")
set fo=fs.GetFolder("C:\Path")
for each x in fo.files
Response.Write("<a href=file:///" &x & ">" & x & "</a>" & "</br>")
next
set fo=nothing
set fs=nothing
%>