为什么 os.path.exists("C:\\windows\\system32\\inetsrv\\metaback") 即使存在也会返回 False ?
我有一个 python 程序,它应该清理许多目录,其中之一是 C:\windows\system32\inetsrv\metaback;但是, os.path.exists() 会在该目录上返回 False,即使该目录存在(并且我有权访问它)。
有趣的是,工具 windirstat 也完全错过了它。
任何人都可以想到这可能的原因以及我可以检查它是否存在的另一种方法吗?我什至无法在其上运行 os.listdir() 。
更新:如果 Windows 系统是 32 位,os.path.exists()
可以在此目录上工作,但如果是 64 位则不行。在 32 位机器上的 Windirstat 中也能正确显示。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是系统文件夹在工作中的重定向。 当 32 位进程在 64 位版本的 Windows 上运行并使用路径
%WINDIR%\System32
,Windows 替换%WINDIR%\SysWow64
。该函数返回 false 告诉您
C:\windows\ syswow64\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:
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.