Set(filemanager ... ) commandThis command used to show file manager screen. FormatSet(filemanager,add|replace,left|right,_list_of_files_) or Set(filemanager,select,left|right,_index_) or Set(filemanager,show|close) |
![]() |
Command Set(filemanager,add|replace ...) used to add or replace content of left/right panels of file manager screen.
1=Set(filemanager,replace,left,..,bin,usr) 2=Set(filemanager,add,left,opt,tmp) 3=ExecAndSet(filemanager,add,left,ls -F --quoting-style=shell)
Command Set(filemanager,select,left|right,_index_) moves cursor to element with specified index.
5=Set(filemanager,left,select,1)Command Set(filemanager,show) used to show file manager screen.
5=Set(filemanager,show)Note: file manager screen will be shown automatically after Set(filemanager,add|replace ....) command.
Command Set(filemanager,close) used to file manager screen. If it is closed, then main window of Java Client will be shown.
Back($$)=Set(filemanager,close)
There are several things which needs to be pointed out:
If a file name is too long to be shown in full, it will be autoscrolled when it will be under cursor. It it possible to switch on/off autoscrolling by pressing "0" key at phone's keypad.
It is possible to select group of files by pressing "*" key on the phone's keypad. After this Copy, Move and Delete operation will be applied to the selected files.
1 | 3 | 7 | 9 | |
Move to | first file | one page up | last file | one page down |
Unlike list operation, file manager screen issues slightly different commands.
If user chooses FileX in left panel and then chooses MenuItem in menu then command MenuItemL(index_of_FileX,FileX) will be issued.
If user chooses FileX in right panel and then chooses MenuItem in menu then command MenuItemR(index_of_FileX,FileX) will be issued.
If user selects mutiple files, then a several commands will be issued. Java Client will send command for each selected file and add "M_" prefix to each command but the last. For example, user want to copy several files from left panel the the right. Then, the following commands could be issued:
M_CopyL(index_of_FileX,FileX)
(will be sent for each file, but the last), and the last replay will be:
CopyL(index_of_FileY,FileY)
For details, see cfg-data/Server-mode/fileManager2.cfg file.