Skip to content

Instantly share code, notes, and snippets.

@handakumbura
Created September 5, 2017 02:38
Show Gist options
  • Save handakumbura/b111441e50243f3c04cda695cce6da01 to your computer and use it in GitHub Desktop.
Save handakumbura/b111441e50243f3c04cda695cce6da01 to your computer and use it in GitHub Desktop.
kt_articlethree_1
import os
folder="/home/dumiduh/pythonian/"
files=os.listdir(folder)
for file in files:
fqfilename=folder+str(file)
modemasked=os.stat(fqfilename).st_mode
uid=os.stat(fqfilename).st_uid
gid=os.stat(fqfilename).st_gid
modebits=bin(modemasked)[-9:]
print fqfilename,uid,gid,modemasked,modebits
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment