Futurebasic/Language/Reference/filesstr ffolder

From Wikibooks, open books for an open world
Jump to navigation Jump to search

FILES$(_fFolder...)[edit | edit source]

Function[edit | edit source]

✔ Appearance ✔ Standard ✔ Console

Syntax[edit | edit source]

folderName$ = FILES$(_fFolder,[prompt$],,refNumVar%)
folderName$ = FILES$(_FSSpecFolder,[prompt$],,FSSpec)

gFBUseNavServices = _zTrue|_false (See note below.)

Revised:
February 2002 (Release 6)

Description[edit | edit source]

This function prompts the user to select an existing folder. It does this by displaying the standard "Get File" dialog shown below (its appearance may be different on some systems). If the user selects a folder, then the folder's name is returned in folderName$, and a reference number for the folder is returned in refNumVar% (which must be a short integer variable). If the selected folder is in a volume's root directory, the refNumVar% will return a volume reference number; otherwise, it will return a working directory reference number. If the user cancels the dialog, then the function returns an empty (zero-length) string, and it sets refNumVar% to zero.

The information contained in folderName$ is the correct name for the folder but is not of any real value except to determine that the user has selected Choose instead of Cancel. Only the volume reference number is necessary when using FB's file handling routines.

If the global variable gFBUseNavServices is non-zero, FB switches to the more modern Navigation Services dialog. If the FSSpec version of the call is used, gFBUseNavServices is assumed to be _zTrue.

Image was here.

Note:
If you are programming for Carbon, the gFBUseNavServices = _zTrue statement is required.

See Also[edit | edit source]

Appendix H: File Spec Records; FILES$(_fOpen...); OPEN; FOLDER