【发布时间】:2012-06-19 13:42:25
【问题描述】:
在 Python 中,是否有检查给定文件/目录是否为符号链接的函数?例如,对于以下文件,我的包装函数应返回 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
【问题讨论】:
在 Python 中,是否有检查给定文件/目录是否为符号链接的函数?例如,对于以下文件,我的包装函数应返回 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
【问题讨论】:
要确定目录条目是否是符号链接,请使用:
如果路径引用了一个符号目录条目,则返回 True 关联。如果不支持符号链接,则始终为 False。
例如,给定:
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
【讨论】:
lnk 的文件,os.islink('a_shortcut.lnk') 返回 False。
IO_REPARSE_TAG_SYMLINK)。
对于 python 3.4 及更高版本,您可以使用 Path 类
from pathlib import Path
# rpd is a symbolic link
>>> Path('rdp').is_symlink()
True
>>> Path('README').is_symlink()
False
使用 is_symlink() 方法时必须小心。只要命名对象是符号链接,即使链接的目标不存在,它也会返回 True。例如(Linux/Unix):
ln -s ../nonexistentfile flnk
然后,在你的当前目录中启动 python
>>> from pathlib import Path
>>> Path('flnk').is_symlink()
True
>>> Path('flnk').exists()
False
程序员必须决定他/她真正想要什么。 Python 3 似乎重命名了很多类。可能值得阅读 Path 类的手册页:https://docs.python.org/3/library/pathlib.html
【讨论】:
is_symlink() 似乎是真的,exists() 是假的,这正是我所期望的。您能否提供您的担忧的来源?
is_symlink 正在为不存在的文件返回 true(所以 exists() 也返回 true)。
无意膨胀这个话题,但我被重定向到这个页面,因为我正在寻找符号链接来找到它们并将它们转换为真实文件,并在 python 工具库中找到了这个脚本。
#Source https://github.com/python/cpython/blob/master/Tools/scripts/mkreal.py
import sys
import os
from stat import *
BUFSIZE = 32*1024
def mkrealfile(name):
st = os.stat(name) # Get the mode
mode = S_IMODE(st[ST_MODE])
linkto = os.readlink(name) # Make sure again it's a symlink
f_in = open(name, 'r') # This ensures it's a file
os.unlink(name)
f_out = open(name, 'w')
while 1:
buf = f_in.read(BUFSIZE)
if not buf: break
f_out.write(buf)
del f_out # Flush data to disk before changing mode
os.chmod(name, mode)
mkrealfile("/Users/test/mysymlink")
【讨论】:
mkrealfile(...) 也与它自己的函数处于同一级别...