mtime(filename, local = false)
public
Returns the last modification time of the (remote) file. If local
is true, it is returned as a local time, otherwise it’s a UTC
time.
# File lib/net/ftp.rb, line 1184
def mtime(filename, local = false)
return TIME_PARSER.(mdtm(filename), local)
end