Difference between revisions of "Os"

From GiderosMobile
(remove language stuff)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
<languages />
 
 
<!-- GIDEROSOBJ:os -->
 
<!-- GIDEROSOBJ:os -->
'''<translate>Supported platforms</translate>:''' [[File:Platform android.png]][[File:Platform ios.png]][[File:Platform mac.png]][[File:Platform pc.png]][[File:Platform html5.png]][[File:Platform winrt.png]][[File:Platform win32.png]]<br/>
+
'''Supported platforms:''' [[File:Platform android.png]][[File:Platform ios.png]][[File:Platform mac.png]][[File:Platform pc.png]][[File:Platform html5.png]][[File:Platform winrt.png]][[File:Platform win32.png]]<br/>
'''<translate>Available since</translate>:''' Gideros 2011.6<br/>
+
'''Available since:''' Gideros 2011.6<br/>
=== <translate>Description</translate> ===
+
 
<translate>Operating System Facilities</translate>
+
=== Description ===
 +
Operating System Facilities.
 +
 
 
{|-
 
{|-
 
| style="width: 50%; vertical-align:top;"|
 
| style="width: 50%; vertical-align:top;"|
=== <translate>Methods</translate> ===
+
=== Methods ===
[[Special:MyLanguage/os.clock|os.clock]] ''<translate>returns CPU time used by program in seconds</translate>''<br/><!-- GIDEROSMTD:os.clock() returns CPU time used by program in seconds -->
+
[[os.clock]] ''returns CPU time used by program in seconds''<br/><!--GIDEROSMTD:os.clock() returns CPU time used by program in seconds-->
[[Special:MyLanguage/os.date|os.date]] ''<translate>returns a string or table containing date and time, "*t" returns a table</translate>''<br/><!-- GIDEROSMTD:os.date(format,time) returns a string or table containing date and time, "*t" returns a table -->
+
[[os.date]] ''returns a string or table containing date and time, "*t" returns a table''<br/><!--GIDEROSMTD:os.date(format,time) returns a string or table containing date and time, "*t" returns a table-->
[[Special:MyLanguage/os.difftime|os.difftime]] ''<translate>returns number of seconds from time t1 to time t2</translate>''<br/><!-- GIDEROSMTD:os.difftime(t2,t1) returns number of seconds from time t1 to time t2 -->
+
[[os.difftime]] ''returns number of seconds from time t1 to time t2''<br/><!--GIDEROSMTD:os.difftime(t2,t1) returns number of seconds from time t1 to time t2-->
[[Special:MyLanguage/os.execute|os.execute]] ''<translate>executes command using C function system, returns status code</translate>''<br/><!-- GIDEROSMTD:os.execute(command) executes command using C function system, returns status code -->
+
[[os.execute]] ''executes command using C function system, returns status code''<br/><!--GIDEROSMTD:os.execute(command) executes command using C function system, returns status code-->
[[Special:MyLanguage/os.exit|os.exit]] ''<translate>terminates host program with optional code, default is success code</translate>''<br/><!-- GIDEROSMTD:os.exit(code) terminates host program with optional code, default is success code -->
+
[[os.exit]] ''terminates host program with optional code, default is success code''<br/><!--GIDEROSMTD:os.exit(code) terminates host program with optional code, default is success code-->
[[Special:MyLanguage/os.getenv|os.getenv]] ''<translate>returns value of environment variable varname. nil if not defined</translate>''<br/><!-- GIDEROSMTD:os.getenv(varname) returns value of environment variable varname. nil if not defined -->
+
[[os.getenv]] ''returns value of environment variable varname. nil if not defined''<br/><!--GIDEROSMTD:os.getenv(varname) returns value of environment variable varname. nil if not defined-->
[[Special:MyLanguage/os.remove|os.remove]] ''<translate>deletes file with given name, nil if fails</translate>''<br/><!-- GIDEROSMTD:os.remove(filename) deletes file with given name, nil if fails -->
+
[[os.remove]] ''deletes file with given name, nil if fails''<br/><!--GIDEROSMTD:os.remove(filename) deletes file with given name, nil if fails-->
[[Special:MyLanguage/os.rename|os.rename]] ''<translate>renames file oldname to newname, nil if fails</translate>''<br/><!-- GIDEROSMTD:os.rename(oldname,newname) renames file oldname to newname, nil if fails -->
+
[[os.rename]] ''renames file oldname to newname, nil if fails''<br/><!--GIDEROSMTD:os.rename(oldname,newname) renames file oldname to newname, nil if fails-->
[[Special:MyLanguage/os.setlocale|os.setlocale]] ''<translate>set current locale of program, returns name of new locate or nil</translate>''<br/><!-- GIDEROSMTD:os.setlocale(locale,category) set current locale of program, returns name of new locate or nil -->
+
[[os.setlocale]] ''set current locale of program, returns name of new locate or nil''<br/><!--GIDEROSMTD:os.setlocale(locale,category) set current locale of program, returns name of new locate or nil-->
[[Special:MyLanguage/os.time|os.time]] ''<translate>returns current time(usually seconds- or time as represented by table</translate>''<br/><!-- GIDEROSMTD:os.time(table) returns current time(usually seconds- or time as represented by table -->
+
[[os.time]] ''returns current time (usually seconds) or time as represented by table''<br/><!--GIDEROSMTD:os.time(table) returns current time (usually seconds) or time as represented by table-->
[[Special:MyLanguage/os.timer|os.timer]] ''<translate>returns precise time in seconds relative to some arbitrary point</translate>''<br/><!-- GIDEROSMTD:os.timer() returns precise time in seconds relative to some arbitrary point -->
+
[[os.timer]] ''returns precise time in seconds relative to some arbitrary point''<br/><!-- GIDEROSMTD:os.timer() returns precise time in seconds relative to some arbitrary point-->
[[Special:MyLanguage/os.tmpname|os.tmpname]] ''<translate>returns a string with a filename for a temporary file(dangerous! tmpfile is better-</translate>''<br/><!-- GIDEROSMTD:os.tmpname() returns a string with a filename for a temporary file(dangerous! tmpfile is better- -->
+
[[os.tmpname]] ''returns a string with a filename for a temporary file (dangerous! tmpfile is better)''<br/><!--GIDEROSMTD:os.tmpname() returns a string with a filename for a temporary file (dangerous! tmpfile is better)-->
 +
 
 
| style="width: 50%; vertical-align:top;"|
 
| style="width: 50%; vertical-align:top;"|
=== <translate>Events</translate> ===
+
=== Events ===
=== <translate>Constants</translate> ===
+
=== Constants ===
 
|}
 
|}
  
 
{{GIDEROS IMPORTANT LINKS}}
 
{{GIDEROS IMPORTANT LINKS}}

Revision as of 16:04, 27 December 2020

Supported platforms: Platform android.pngPlatform ios.pngPlatform mac.pngPlatform pc.pngPlatform html5.pngPlatform winrt.pngPlatform win32.png
Available since: Gideros 2011.6

Description

Operating System Facilities.

Methods

os.clock returns CPU time used by program in seconds
os.date returns a string or table containing date and time, "*t" returns a table
os.difftime returns number of seconds from time t1 to time t2
os.execute executes command using C function system, returns status code
os.exit terminates host program with optional code, default is success code
os.getenv returns value of environment variable varname. nil if not defined
os.remove deletes file with given name, nil if fails
os.rename renames file oldname to newname, nil if fails
os.setlocale set current locale of program, returns name of new locate or nil
os.time returns current time (usually seconds) or time as represented by table
os.timer returns precise time in seconds relative to some arbitrary point
os.tmpname returns a string with a filename for a temporary file (dangerous! tmpfile is better)

Events

Constants