Difference between revisions of "HOME()"

From Lianjapedia
Jump to: navigation, search
m (1 revision)
Line 1: Line 1:
 
==Purpose==
 
==Purpose==
Function to return the directory where the Recital software is installed
+
Function to return the current directory
 
   
 
   
 
 
==Syntax==
 
==Syntax==
 
HOME()
 
HOME()
 
  
 
==See Also==
 
==See Also==
 
[[CURDIR()]], [[DEFAULT()]], [[GETENV()]], [[PUTENV()]]
 
[[CURDIR()]], [[DEFAULT()]], [[GETENV()]], [[PUTENV()]]
 
  
 
==Description==
 
==Description==
The HOME() function returns a character string representing the drive and directory where the Recital software is installed.
+
The HOME() function returns a character string of the current directory.
 
+
  
 
==Example==
 
==Example==
 
<code lang="recital">
 
<code lang="recital">
// UNIX
 
 
?home()
 
?home()
/opt/recital/
+
C:\USERS\USER1\
 
</code>
 
</code>
  
 
==Products==
 
Recital Server, Recital
 
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Functions]]
 
[[Category:Functions]]

Revision as of 11:25, 10 February 2012

Purpose

Function to return the current directory

Syntax

HOME()

See Also

CURDIR(), DEFAULT(), GETENV(), PUTENV()

Description

The HOME() function returns a character string of the current directory.

Example

?home()
C:\USERS\USER1\