将 UNC 路径与经典 ASP FileSystemObject 一起使用

发布于 2025-01-01 06:16:52 字数 532 浏览 0 评论 0原文

根据网站,我发现下面的代码应该可以工作。如果我将路径更改为 C:\whats_new.txt 它就可以正常工作。

Const Filename = "\\SCPAFS1PW\returns\whats_new.txt"    ' file to read
Const ForReading = 1, ForWriting = 2, ForAppending = 3
Const TristateUseDefault = -2, TristateTrue = -1, TristateFalse = 0

' Create a filesystem object
Dim FSO
set FSO = server.createObject("Scripting.FileSystemObject")

' Map the logical path to the physical system path
Dim Filepath
Filepath = Filename

if FSO.FileExists(Filepath) Then <--This always returns false

According to the websites I could find the below code should work. If I change the path to C:\whats_new.txt it works just fine.

Const Filename = "\\SCPAFS1PW\returns\whats_new.txt"    ' file to read
Const ForReading = 1, ForWriting = 2, ForAppending = 3
Const TristateUseDefault = -2, TristateTrue = -1, TristateFalse = 0

' Create a filesystem object
Dim FSO
set FSO = server.createObject("Scripting.FileSystemObject")

' Map the logical path to the physical system path
Dim Filepath
Filepath = Filename

if FSO.FileExists(Filepath) Then <--This always returns false

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

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

发布评论

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

评论(2

鹤仙姿 2025-01-08 06:16:52

系统提示该文件不存在。事实上,这实际上是一个权限问题。微软设计了这个错误,这样如果您没有权限,您就无法找出文件夹上的文件名。

我修改了对该目录的权限,并且能够使用 UNC 路径访问它。

The system reports the file does not exist. In fact it was actually a permissions issue. Microsoft designed the error so that if you do not have permission you cannot fish to figure out file names on a folder.

I modified my permisions to the directory and I was able to access it using a UNC path.

财迷小姐 2025-01-08 06:16:52

asp Classic 不(默认情况下)使用应用程序池 ID 进行身份验证 -
要设置 iis 的用户名,请按照下列步骤操作:
在 IIS 上选择您要更改的网站/应用程序:
双击身份验证
单击“匿名身​​份验证”,然后单击“编辑”
您可以设置特定用户或选择应用程序池身份

asp Classic does not (by default) use the Application Pool id for authentication -
To set the username for iis follow these steps:
on IIS select the website / application you wish to change:
Double Click on Authentication
Click on Anonymous Authentication and then click edit
You can either set a specific user or select the Application pool identity

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