rwxrwxr-x
ディレクトリを指定して、775 ( ) パーミッションを持つそのディレクトリ内のすべてのディレクトリを返す Python プログラムが必要です。
ありがとう!
OPが望んでいることは完全には明らかではありませんが、どちらの答えも再帰しません。これは再帰的なアプローチです(テストされていませんが、アイデアはわかります):
import os
import stat
import sys
MODE = "775"
def mode_matches(mode, file):
"""Return True if 'file' matches 'mode'.
'mode' should be an integer representing an octal mode (eg
int("755", 8) -> 493).
"""
# Extract the permissions bits from the file's (or
# directory's) stat info.
filemode = stat.S_IMODE(os.stat(file).st_mode)
return filemode == mode
try:
top = sys.argv[1]
except IndexError:
top = '.'
try:
mode = int(sys.argv[2], 8)
except IndexError:
mode = MODE
# Convert mode to octal.
mode = int(mode, 8)
for dirpath, dirnames, filenames in os.walk(top):
dirs = [os.path.join(dirpath, x) for x in dirnames]
for dirname in dirs:
if mode_matches(mode, dirname):
print dirname
同様のことがstatの stdlib ドキュメントに記載されてい ます。
ブライアンの答えに基づくコンパクトジェネレーター:
import os
(fpath for fpath
in (os.path.join(dirname,fname) for fname in os.listdir(dirname))
if (os.path.isdir(fpath) and (os.stat(fpath).st_mode & 0777) == 0775))
それはpythonである必要がありますか?
find を使用してそれを行うこともできます。
「find . -perm 775」