RosettaCodeData/Task/File-modification-time/Crystal/file-modification-time.cr

7 lines
127 B
Crystal
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
# get
mtime = File.info(filename).modification_time
# set
File.touch(filename) # default: now; or
File.touch(filename, time)