Difference between revisions of "love.filesystem.getLastModified"
m |
m (Welp ... didn't work) |
||
Line 1: | Line 1: | ||
+ | {{newin|[[0.7.1]]|071|type=function}} | ||
Gets the last modification time of a file. | Gets the last modification time of a file. | ||
== Function == | == Function == | ||
Line 23: | Line 24: | ||
[[Category:Functions]] | [[Category:Functions]] | ||
{{#set:Description=Gets the last modification time of a file.}} | {{#set:Description=Gets the last modification time of a file.}} | ||
− | |||
== Other Languages == | == Other Languages == | ||
{{i18n|love.filesystem.getLastModified}} | {{i18n|love.filesystem.getLastModified}} |
Revision as of 10:15, 27 December 2015
Available since LÖVE 0.7.1 |
This function is not supported in earlier versions. |
Gets the last modification time of a file.
Contents
Function
Synopsis
modtime, errormsg = love.filesystem.getLastModified( filename )
Arguments
string filename
- The path and name to a file.
Returns
number modtime
- The last modification time in seconds since the unix epoch or nil on failure.
string errormsg
- The error message on failure.
Examples
Getting the time of a file and printing it as a date.
modtime, errormsg = love.filesystem.getLastModified("file.dat")
if modtime then
print(os.date("%c", modtime)) -- "02/15/2011 12:32:11" (Depends on the system and locale)
end
See Also
Other Languages
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info