・The execution result can be obtained with the RESULT function.
・The value of RESULT is 1 for success and 0 for failure.
Specify when you want to display a specific file type.
・If not specified, all files will be displayed.
The name of the project for which you want to get a list
・If not specified, a list of files in the current project will be displayed.
FILES FILES "TXT:PROJECT"
・The execution result can be obtained with the RESULT function.
・The value of RESULT is 1 for success and 0 for failure.
If "//" is specified, the project list is displayed.
FILES "//"
・The execution result can be obtained with the RESULT function.
・The value of RESULT is 1 for success and 0 for failure.
Specify when you want to get a specific file type
・If not specified, all files are acquired.
The name of the project for which you want to get a list
・If not specified, get a list of files in the current project.
A string array containing a list of files
NAMETBL$ = FILES() FOR I=0 TO LAST(NAMETBL$) ?NAMETBL$[I] NEXT
・The execution result can be obtained with the RESULT function.
・The value of RESULT is 1 for success and 0 for failure.
If "//" is specified, the project list is acquired.
A string array containing a list of projects
NAMETBL$ = FILES("//") FOR I=0 TO LAST(NAMETBL$) ?NAMETBL$[I] NEXT
・The execution result can be obtained with the RESULT function.
・The value of RESULT is 1 for success and 0 for failure.
Specify when you want to get a specific file type
The name of the project for which you want to get a list.
・If not specified, get a list of files in the current project.
・A string array that stores the file names in the file list.
・In the case of a one-dimensional array, it is automatically expanded according to the number of acquired files.
DIM NAMETBL$[] FILES NAMETBL$ FOR I=0 TO LAST(NAMETBL$) ?NAMETBL$[I] NEXT
・The execution result can be obtained with the RESULT function.
・The value of RESULT is 1 for success and 0 for failure.
If "//" is specified, the project list is acquired.
・A string array that stores the project names in the project list.
・In the case of a one-dimensional array, it is automatically expanded according to the number of acquired files.
DIM NAMETBL$[] FILES "//", NAMETBL$ FOR I=0 TO LAST(NAMETBL$) ?NAMETBL$[I] NEXT