Difference between revisions of "love.filesystem.getLastModified"

(Added deprecation notice)
m (Changed version number from 0.11.0 to 11.0)
 
Line 1: Line 1:
{{deprecatedin|[[0.11.0]]|110|type=function|text=This function is deprecated and is replaced by [[love.filesystem.getInfo]]}}
+
{{deprecatedin|[[11.0]]|110|type=function|text=This function is deprecated and is replaced by [[love.filesystem.getInfo]]}}
 
Gets the last modification time of a file.
 
Gets the last modification time of a file.
 
== Function ==
 
== Function ==

Latest revision as of 18:25, 3 April 2018

Deprecated in LÖVE 11.0
This function is deprecated and is replaced by love.filesystem.getInfo.

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