Difference between revisions of "BASENAME()"

From Lianjapedia
Jump to: navigation, search
 
(3 intermediate revisions by 2 users not shown)
Line 6: Line 6:
  
 
==See Also==
 
==See Also==
[[DBF()]], [[GETENV()]], [[GETLOG()]], [[NDX()]], [[SET FULLPATH]]
+
[[DBF()]], [[DEFAULT()]], [[DEFAULTEXT()]], [[FORCEEXT()]], [[FORCEPATH()]], [[GETENV()]], [[JUSTEXT()]], [[JUSTFNAME()]], [[JUSTPATH()]], [[JUSTSTEM()]], [[JUSTDRIVE()]], [[NDX()]], [[PATH()]], [[SET FULLPATH]], [[SET PATH]], [[SYS()]]
  
 
==Description==
 
==Description==
Line 14: Line 14:
 
<code lang="recital">
 
<code lang="recital">
 
? dbf()
 
? dbf()
accounts.dbf
+
customers.dbf
 
set fullpath on
 
set fullpath on
 
? dbf()
 
? dbf()
/opt/recital/data/demo/accounts.dbf
+
/opt/lianja/data/southwind/customers.dbf
 
? basename(dbf())
 
? basename(dbf())
accounts.dbf
+
customers.dbf
 
</code>
 
</code>
 
   
 
   
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Functions]]
 
[[Category:Functions]]

Latest revision as of 09:02, 16 November 2012

Purpose

Function to return the base filename from a given file specification

Syntax

BASENAME(<expC>)

See Also

DBF(), DEFAULT(), DEFAULTEXT(), FORCEEXT(), FORCEPATH(), GETENV(), JUSTEXT(), JUSTFNAME(), JUSTPATH(), JUSTSTEM(), JUSTDRIVE(), NDX(), PATH(), SET FULLPATH, SET PATH, SYS()

Description

The BASENAME() function returns the base filename from the file specification <expC>. This function is very useful when used in conjunction with the command, SET FULLPATH ON. The BASENAME() functions always returns a character string without changing the case.

Example

? dbf()
customers.dbf
set fullpath on
? dbf()
/opt/lianja/data/southwind/customers.dbf
? basename(dbf())
customers.dbf