[<<Previous Entry]
[^^Up^^]
[Next Entry>>]
[Menu]
[About The Guide]
##############################################################################
###+-------------+############################################################
#+-| FIND_FSTR() |-----------------------------------------------------+######
#| +-------------+ Returns the filename, directory name or disk volume |######
#+---------------------------------------------------------------------+######
##############################################################################
##############################################################################
#+--| Summary |----------------+##############################################
#| #INCLUDE system.hdr |##############################################
#+-----------------------------+##############################################
##############################################################################
##############################################################################
#+--| Syntax |-------------------------------+################################
#| FUNCTION CHAR find_fstr PROTOTYPE |################################
#+-------------------------------------------+################################
##############################################################################
##############################################################################
#########+---| Description |-----------------------------------------+########
#########| Returns the filename, directory name or the disk volume |########
#########| label found by the find_first() or find_next() functions. |########
#########| --------------------------------------------------------- |########
#########| The filename or directory name returned does not include |########
#########| the full path or any drive id. |########
#########+-----------------------------------------------------------+########
##############################################################################
##############################################################################
#########+--| Example 1 |-------------------------------------------+#########
#########| * Print the names of all hidden files in the |#########
#########| * root directory. |#########
#########| |#########
#########| IF .NOT. find_first( "*.*", 0x2 ) |#########
#########| RETURN |#########
#########| ENDIF |#########
#########| |#########
#########| REPEAT |#########
#########| ? "Hidden file is : "+find_fstr() |#########
#########| UNTIL .NOT. find_next() |#########
#########+----------------------------------------------------------+#########
##############################################################################
##############################################################################
#########+--| Example 2 |-------------------------------------------+#########
#########| * Copy all .dbf files to a floppy drive. |#########
#########| |#########
#########| IF find_first( "*.dbf" , 0x20 ) |#########
#########| REPEAT |#########
#########| COPY find_fstr() TO "a:\"+find_fstr() |#########
#########| UNTIL .NOT. find_next() |#########
#########| ENDIF |#########
#########+----------------------------------------------------------+#########
##############################################################################
See Also:
find_first()
find_next()
find_fext()
...
This page created by ng2html v1.05, the Norton guide to HTML conversion utility.
Written by Dave Pearson