我os.walk
用来遍历我的目录。问题是我想识别文件是否是符号链接,而不是链接。这段代码:
for root, dirs, files in os.walk(PROJECT_PATH):
for f in files:
# I want os.path.islink(f) to return true for symlink here
# instead of ignoring them by default
不会给我符号链接,而这段代码
for root, dirs, files in os.walk(PROJECT_PATH, followlinks=True):
for f in files
将遍历符号链接指向的目录,但不给我符号链接本身。谢谢。