Is there a way to get the modification time of a file (path given)? Right now I'm using this round-about way:
using Dates refreshtimestr = readall( `stat -f "%m" $f`) refreshtime = unix2datetime( int( chomp( refreshtimestr ) ) ) I'm not sure how portable this is (it works okay on a mac).
