본문 바로가기
파이썬

파이썬에서 파일 또는 디렉토리의 소유자를 찾는 방법

by º기록 2021. 1. 9.
반응형

파일 또는 디렉터리의 소유자를 찾으려면 Python의 함수 또는 메서드가 필요합니다.

함수는 다음과 같아야합니다.

>>> find_owner("/home/somedir/somefile")
owner3

 

해결 방법

 

나는 정말로 파이썬 사람은 아니지만 이것을 채울 수 있었다.

from os import stat
from pwd import getpwuid

def find_owner(filename):
    return getpwuid(stat(filename).st_uid).pw_name

 

참조 페이지 https://stackoverflow.com/questions/1830618

 

 

반응형

댓글