Python os.walk 和符号链接

Ser*_*nyy 4 python symlink

在修复一位用户在 AskUbuntu 上回答时 ,我发现了一个小问题。代码本身很简单: os.walk ,递归地获取目录中所有文件的总和。

但它打破了符号链接:

$ python test_code2.py $HOME                                                                                          
Traceback (most recent call last):
  File "test_code2.py", line 8, in <module>
    space += os.stat(os.path.join(subdir, f)).st_size
OSError: [Errno 2] No such file or directory: '/home/xieerqi/.kde/socket-eagle'
Run Code Online (Sandbox Code Playgroud)

那么问题是,我如何告诉 python 忽略这些文件并避免对它们求和?

解决方案

正如评论中所建议的,我添加了os.path.isfile()检查,现在它可以完美运行并为我的主目录提供正确的大小

$> cat test_code2.py                                                          
#! /usr/bin/python
import os
import sys

space = 0L  # L means "long" - not necessary in Python 3
for subdir, dirs, files in os.walk(sys.argv[1]):
    for f in files:
        file_path = os.path.join(subdir, f)
        if os.path.isfile(file_path):
           space += os.stat(file_path).st_size

sys.stdout.write("Total: {:d}\n".format(space))
$> python test_code2.py  $HOME                                                
Total: 76763501905
Run Code Online (Sandbox Code Playgroud)

Jac*_*ijm 5

正如 Antti Haapala 在评论中已经提到的,脚本不会在符号链接上中断,而是在符号链接中断时中断。以现有脚本为起点,避免这种情况的一种方法是使用try/except

#! /usr/bin/python2
import os
import sys

space = 0L  # L means "long" - not necessary in Python 3
for root, dirs, files in os.walk(sys.argv[1]):
    for f in files:
        fpath = os.path.join(root, f)
        try:
            space += os.stat(fpath).st_size
        except OSError:
            print("could not read "+fpath)

sys.stdout.write("Total: {:d}\n".format(space))
Run Code Online (Sandbox Code Playgroud)

作为副作用,它会为您提供有关可能断开的链接的信息。