Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am trying to work on Lua file handling.

So, I am able to open, read, write, close the files.

local session_debug = io.open("/root/session_debug.txt", "a")
session_debug:write("Some text
")
session_debug:close()

How can I know the last modified date timestamp of this file.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
836 views
Welcome To Ask or Share your Answers For Others

1 Answer

There's no built-in function in standard Lua that does this. One way to get it without third-party libraries is to take use of io.popen.

For example, on Linux, you could use stat:

local f = io.popen("stat -c %Y testfile")
local last_modified = f:read()

Now last_modified is the timestamp of the last modified time of testfile. On my system,

print(os.date("%c", last_modified))

Outputs Sat Mar 22 08:36:50 2014.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...