Difference between revisions of "SET FILECASE"

From Lianjapedia
Jump to: navigation, search
 
(3 intermediate revisions by 2 users not shown)
Line 13: Line 13:
 
The following commands and functions are affected by SET FILECASE:
 
The following commands and functions are affected by SET FILECASE:
  
{| class="wikitable"
+
{| class="wikitable" width="100%"
 
|[[COMPILE]]||[[DO]]||[[SET DEFAULT]]||[[SET PATH]]
 
|[[COMPILE]]||[[DO]]||[[SET DEFAULT]]||[[SET PATH]]
 
|-
 
|-
|[[SET PRINTER]]||[[ADIR()]]||[[BINCREATE()]]||[[BINOPEN()]]
+
|[[ADIR()]]||[[BINCREATE()]]||[[BINOPEN()]]||[[FCREATE()]]
 
|-
 
|-
|[[FCREATE()]]||[[FDATE()]]||[[FILE()]]||[[FILECOUNT()]]
+
|[[FDATE()]]||[[FILE()]]||[[FILECOUNT()]]||[[FOPEN()]]
 
|-
 
|-
|[[FOPEN()]]||[[FTIME()]]||[[IFILECOUNT()]]||[[MEMOREAD()]]
+
|[[FTIME()]]||[[IFILECOUNT()]]||[[MEMOREAD()]]||[[MEMOWRITE()]]
|-
+
|[[MEMOWRITE()]]||||||
+
 
|-
 
|-
 
|}
 
|}
Line 33: Line 31:
 
[[Category:Commands]]
 
[[Category:Commands]]
 
[[Category:Set_Commands|FILECASE]]
 
[[Category:Set_Commands|FILECASE]]
[[Category:Environment Commands]]
 

Latest revision as of 09:02, 5 February 2013

Purpose

Allows case sensitive processing of file/directory names

Syntax

SET FILECASE <ON | OFF>

See Also

See below

Description

When set on, file and directory processing is case sensitive. When set off, all filenames and directory names are set to lowercase. SET FILECASE ON must be active before issuing the COMPILE command to enable case sensitivity in compiled programs (dbo files). Default is OFF.

The following commands and functions are affected by SET FILECASE:

COMPILE DO SET DEFAULT SET PATH
ADIR() BINCREATE() BINOPEN() FCREATE()
FDATE() FILE() FILECOUNT() FOPEN()
FTIME() IFILECOUNT() MEMOREAD() MEMOWRITE()

Example

set filecase on