Skip to content

Instantly share code, notes, and snippets.

@kwilczynski
Created August 2, 2012 20:06
Show Gist options
  • Save kwilczynski/3240206 to your computer and use it in GitHub Desktop.
Save kwilczynski/3240206 to your computer and use it in GitHub Desktop.
File.ownership
class File
def self.ownership(file)
require 'etc'
s = File.stat(file)
[Etc.getpwuid(s.uid).name, Etc.getgrgid(s.gid).name]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment