VBScript filemtime function

A VBScript equivalent of PHP’s filemtime


Public Function filemtime(filename)

    Dim f
    filename = fileMapPath(filename)
    set f = fso.GetFile(filename)
    filemtime = f.DateLastModified

End Function

Private Function fileMapPath(filename)

    Dim tmp
    tmp = Left(filename,3)
    tmp = Lcase(tmp)
    If tmp <> "d:¥" and tmp <> "c:¥" and left(filename,7) <> "http://" then
            fileMapPath = Server.MapPath(filename)
    Else
        fileMapPath = filename
    End If

End Function

Please also note that php.vbs offers community built functions and goes by the McDonald’s Theory. We’ll put online functions that are far from perfect, in the hopes to spark better contributions. Do you have one? Then please just:

Other PHP functions in the filesystem extension