Difference between revisions of "love.filesystem.getLastModified"

m (Another test)
m
Line 23: Line 23:
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Gets the last modification time of a file.}}
 
{{#set:Description=Gets the last modification time of a file.}}
{{#set:Since=000}}
+
{{#set:Since=071}}
 
{{#set:PrettySince=0.7.1}}
 
{{#set:PrettySince=0.7.1}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|love.filesystem.getLastModified}}
 
{{i18n|love.filesystem.getLastModified}}

Revision as of 15:49, 27 December 2015

Gets the last modification time of a file.

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