RosettaCodeData/Task/File-modification-time/Julia/file-modification-time.julia

9 lines
245 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
using Dates
fname, _ = mktemp()
println("The modification time of $fname is ", Dates.unix2datetime(mtime(fname)))
println("\nTouch this file.")
touch(fname)
println("The modification time of $fname is now ", Dates.unix2datetime(mtime(fname)))