为什么 os.path.exists("C:\\windows\\system32\\inetsrv\\metaback") 即使存在也会返回 False ?

发布于 2024-10-15 20:09:07 字数 401 浏览 5 评论 0 原文

我有一个 python 程序,它应该清理许多目录,其中之一是 C:\windows\system32\inetsrv\metaback;但是, os.path.exists() 会在该目录上返回 False,即使该目录存在(并且我有权访问它)。

有趣的是,工具 windirstat 也完全错过了它。

任何人都可以想到这可能的原因以及我可以检查它是否存在的另一种方法吗?我什至无法在其上运行 os.listdir() 。

更新:如果 Windows 系统是 32 位,os.path.exists() 可以在此目录上工作,但如果是 64 位则不行。在 32 位机器上的 Windirstat 中也能正确显示。

I've got a python program which is supposed to clean up a number of directories and one of them is C:\windows\system32\inetsrv\metaback; however, os.path.exists() returns False on that directory even though it exists (and I have permissions to access it).

What's interesting also is that the tool windirstat completely misses it as well.

Can anyone think of a reason why this might be and what's another way I could check to see if it exist? I can't even seem to run os.listdir() on it.

Update: os.path.exists() works on this directory if the Windows box is 32-bit, but not if it is 64-bit. Also shows up properly in windirstat on a 32-bit box.

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

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

发布评论

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

评论(2

稀香 2024-10-22 20:09:07

这是系统文件夹在工作中的重定向。 当 32 位进程在 64 位版本的 Windows 上运行并使用路径 %WINDIR%\System32,Windows 替换 %WINDIR%\SysWow64

该函数返回 false 告诉您 C:\windows\ syswow64\inetsrv\metaback 不存在,而且它很可能是绝对正确的。

尝试改为:

os.path.exists("C:\\windows\\sysnative\\inetsrv\\metaback")

This is redirection of system folders at work. When a 32-bit process is running on a 64-bit version of Windows and uses the path %WINDIR%\System32, Windows substitutes %WINDIR%\SysWow64.

The function is returning false to tell you that C:\windows\syswow64\inetsrv\metaback does not exist, and it most likely is absolutely correct.

Try instead:

os.path.exists("C:\\windows\\sysnative\\inetsrv\\metaback")
錯遇了你 2024-10-22 20:09:07

Windows x64 安全性比 Windows x86 严格得多;特别是在当前版本的操作系统 (7, 2008) 下。

听起来您的脚本实际上没有运行所需的权限。一般来说,MS 锁定了相当多的目录路径(例如 c:\inetpub),这些路径需要提升的权限才能执行任何操作。

这有很多原因,而且通常被认为是一件非常好的事情。

我相信您会希望将您的脚本(或执行它的任何内容)标记为“以管理员身份运行”,以便赋予它更高的控制权。当然,这可能需要您通过 UAC 确认执行。

有关更多信息,请访问 serverfault.com 并在那里询问。

Windows x64 security is quite a bit tighter than windows x86; especially under the current release OSes (7, 2008).

Sounds like your script doesn't actually have the permissions it needs to run. Generally speaking MS locked down quite a few directory paths (like c:\inetpub) which require elevated priviledges in order to perform any actions.

There are huge reasons for this and it's generally considered a very good thing.

I believe you'll want to mark your script (or whatever executes it) as "Run as administrator" in order to give it the elevated control. Of course, this may require you to confirm execution via the UAC.

For further information, go to serverfault.com and ask there.

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