diff options
author | Mattes D <github@xoft.cz> | 2015-04-11 10:06:08 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-04-11 10:06:08 +0200 |
commit | c4842cb9aa81634799dce0a5cfa76654b9f17ab4 (patch) | |
tree | 52160dc47a29a72903448551ace51dc180b95797 /MCServer/Plugins/APIDump/APIDesc.lua | |
parent | Fixed plugin hook calls when unloading plugins. (diff) | |
download | cuberite-c4842cb9aa81634799dce0a5cfa76654b9f17ab4.tar cuberite-c4842cb9aa81634799dce0a5cfa76654b9f17ab4.tar.gz cuberite-c4842cb9aa81634799dce0a5cfa76654b9f17ab4.tar.bz2 cuberite-c4842cb9aa81634799dce0a5cfa76654b9f17ab4.tar.lz cuberite-c4842cb9aa81634799dce0a5cfa76654b9f17ab4.tar.xz cuberite-c4842cb9aa81634799dce0a5cfa76654b9f17ab4.tar.zst cuberite-c4842cb9aa81634799dce0a5cfa76654b9f17ab4.zip |
Diffstat (limited to 'MCServer/Plugins/APIDump/APIDesc.lua')
-rw-r--r-- | MCServer/Plugins/APIDump/APIDesc.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/MCServer/Plugins/APIDump/APIDesc.lua b/MCServer/Plugins/APIDump/APIDesc.lua index a892adbcd..3ec7dc1d0 100644 --- a/MCServer/Plugins/APIDump/APIDesc.lua +++ b/MCServer/Plugins/APIDump/APIDesc.lua @@ -978,7 +978,10 @@ cFile:Delete("/usr/bin/virus.exe"); CreateFolder = { Params = "FolderName", Return = "bool", Notes = "(STATIC) Creates a new folder. Returns true if successful." }, Delete = { Params = "FileName", Return = "bool", Notes = "(STATIC) Deletes the specified file. Returns true if successful." }, Exists = { Params = "FileName", Return = "bool", Notes = "(STATIC) Returns true if the specified file exists." }, + GetExecutableExt = { Params = "", Return = "string", Notes = "(STATIC) Returns the customary executable extension used by the current platform (\".exe\" on Windows, empty string on Linux). " }, GetFolderContents = { Params = "FolderName", Return = "array table of strings", Notes = "(STATIC) Returns the contents of the specified folder, as an array table of strings. Each filesystem object is listed. Use the IsFile() and IsFolder() functions to determine the object type." }, + GetLastModificationTime = { Params = "Path", Return = "number", Notes = "(STATIC) Returns the last modification time (in current timezone) of the specified file or folder. Returns zero if file not found / not accessible. The returned value is in the same units as values returned by os.time()." }, + GetPathSeparator = { Params = "", Return = "string", Notes = "(STATIC) Returns the primary path separator used by the current platform. Returns \"\\\" on Windows and \"/\" on Linux. Note that the platform or CRT may support additional path separators, those are not reported." }, GetSize = { Params = "FileName", Return = "number", Notes = "(STATIC) Returns the size of the file, or -1 on failure." }, IsFile = { Params = "Path", Return = "bool", Notes = "(STATIC) Returns true if the specified path points to an existing file." }, IsFolder = { Params = "Path", Return = "bool", Notes = "(STATIC) Returns true if the specified path points to an existing folder." }, |