DECLARE Exclude$ = "Guest|Shared"
FUNCTION SelectFolder$(Title$, Folder$)
LOCAL Menu$ ASSOC STRING
LOCAL tLen,cnt,Amount TYPE int
LOCAL Border$ TYPE STRING
LOCAL Loop TYPE _Bool
tLen = LEN(Title$)
Loop = TRUE
Border$ = FILL$(LEN(Title$), 45 )
WHILE Loop
Count = 1
OPEN Folder$ FOR DIRECTORY AS mydir
CLEAR
PRINT Title$
PRINT Border$
REPEAT
GETFILE myfile$ FROM mydir
IF LEFT$(myfile$,1)== "." OR ISFALSE(LEN(myfile$)) OR REGEX(myfile$,Exclude$) THEN
CONTINUE
ELSE
Menu$(STR$(Count)) = myfile$
PRINT Count,") ", myfile$
INCR Count
ENDIF
UNTIL ISFALSE(LEN(myfile$))
CLOSE DIRECTORY mydir
PRINT Border$
Amount = NRKEYS(Menu$)
PRINT
INPUT "Select User: ",Selection$
blah = VAL(Selection$)
IF (blah < 1 OR blah > Amount) THEN
PRINT ">>> Invalid Selection <<"
SLEEP 1000
CONTINUE
ELSE
Loop = FALSE
ENDIF
WEND
RETURN Menu$(Selection$)
END FUNCTION
selected$ = SelectFolder$("Armando's Test Menu","/home")
PRINT
PRINT "You Selected: ", selected$
I gave your BaCon example a try but had to make the _Bool change and change /Users to /home.
This is a much easier task than I first imagined.
On Linux and I assume iOS one must run this as root.
BTW, root is not usually in the /home folder. It's typically at /root in Linux, and in /var under macOS (not iOS).
Armando's Test Menu
-------------------
[0] .localized
[1] Shared
[2] Shared
[3] Guest
[4] Guest
[5] riveraa
-------------------
Select User: 9
You Selected: undef
Armando's Test Menu
-------------------
0) .localized
1) riveraa
-------------------
Select User:
Armando's Test Menu
-------------------
1) riveraa
-------------------
Select User:
I added an ANSI escape sequence to the Linux version to clear the screen if an invaild selection is made before retrying. It doesn't seem to work on Windows, surprised?
John, does SB support conditional execution based on OS? Like an #IFDEF in C?
Hopefully he will have better luck under Windows then I did with SB.
... hard to follow the flow of the code, when it's densely packed.
Why do you think Peter forced lower case for Windows only?