gpt4 book ai didi

python - os.path.isfile() 为网络驱动器上的文件返回 false

转载 作者:太空宇宙 更新时间:2023-11-04 00:46:11 25 4
gpt4 key购买 nike

我正在尝试使用 os.path.isfile 测试网络驱动器上是否存在文件,但即使文件存在,它也会返回 false。知道为什么会这样或我可以使用任何其他方法来检查此文件吗?

我使用的是Python2.7和Windows10

它应该返回 true:

import os

if os.path.isfile("C:\test.txt"):
print "Is File"
else:
print "Is Not File"

即使文件存在也返回 false:

import os

if os.path.isfile("Q:\test.txt"):
print "Is File"
else:
print "Is Not File"

最佳答案

来自 python https://docs.python.org/2/library/os.path.html :

The os.path module is always the path module suitable for the operating system Python is running on, and therefore usable for local paths

尝试使用完整的 UNC 路径而不是映射的驱动器。

import os

if os.path.isfile(r"\\full\uncpath\test.txt"):
print "Is File"
else:
print "Is Not File"

关于python - os.path.isfile() 为网络驱动器上的文件返回 false,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39492524/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com