gpt4 book ai didi

python - 如何检查文件是否是Python中的符号链接(symbolic link)?

转载 作者:IT老高 更新时间:2023-10-28 21:32:02 27 4
gpt4 key购买 nike

在 Python 中,是否有检查给定文件/目录是否为符号链接(symbolic link)的函数?例如,对于以下文件,我的包装函数应该返回 True

# ls -l
total 0
lrwxrwxrwx 1 root root 8 2012-06-16 18:58 dir -> ../temp/
lrwxrwxrwx 1 root root 6 2012-06-16 18:55 link -> ../log

最佳答案

要确定目录条目是否为符号链接(symbolic link),请使用:

os.path.islink(path)

Return True if path refers to a directory entry that is a symbolic link. Always False if symbolic links are not supported.

例如,给定:

drwxr-xr-x   2 root root  4096 2011-11-10 08:14 bin/
drwxrwxrwx 1 root root 57 2011-07-10 05:11 initrd.img -> boot/initrd.img-2..

>>> import os.path
>>> os.path.islink('initrd.img')
True
>>> os.path.islink('bin')
False

关于python - 如何检查文件是否是Python中的符号链接(symbolic link)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11068419/

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