#!/usr/bin/python
import stat, sys, os, string, commands

#Getting search pattern from user and assigning it to a list

try:
    #run a 'find' command and assign results to a variable
    pattern = raw_input("Enter the file pattern to search for:\n")
    commandString = "find " + pattern
    commandOutput = commands.getoutput(commandString)
    findResults = string.split(commandOutput, "\n")

    #output find results, along with permissions
    print "Files:"
    print commandOutput
    print "================================"
    for file in findResults:
        mode=stat.S_IMODE(os.lstat(file)[stat.ST_MODE])
        print "\nPermissions for file ", file, ":"
        for level in "USR", "GRP", "OTH":
            for perm in "R", "W", "X":
                if mode & getattr(stat,"S_I"+perm+level):
                    print level, " has ", perm, " permission"
                else:
                    print level, " does NOT have ", perm, " permission"
except:
    print "There was a problem - check the message

'PYTHON > CODE' 카테고리의 다른 글

[CODE] Port Scanner 예제  (0) 2012.09.26
[CODE] TKINTER 메뉴 만들기  (0) 2012.09.24
[CODE] 시스템 정보 가져오기  (0) 2012.09.24
[CODE] ID/PASSWD 복잡성 체크  (0) 2012.09.24
[CODE] 디스크 사용량 체크  (0) 2012.09.24

+ Recent posts