windows - How can I get the username of the person who initialised the file in ruby? -
how can username of person initialised file in ruby?
i'm using windows xp. , ruby 1.9.2
try this:
require 'etc' file.stat("myfile").uid -> 666 example puts 'my file owned by', etc.getpwuid(uid).name
Comments
Post a Comment