B4J Question [ABMaterial] FileManager - show and manipulate only folders (without files)

peacemaker

Expert
Licensed User
Longtime User
HI, All

Is it possible to see only folders, and make move\copy\paste only for folders ?
The thumbnails are also not needed - the files qty in the folders is so huge, so only folders are needed.

Really ?
 

Magma

Expert
Licensed User
Longtime User
in cmd (so jshell - i think there is at linux something same for LS):

oups! now i ve seen ABMaterial ...

anyway in b4j... you can select directory with:

B4X:
    Dim dc As DirectoryChooser
    dc.Initialize
    dc.Title="Select folder for working"

        'dc.InitialDirectory=seldir.Replace("\","/")  'the start directory/folder
        seldir=dc.Show(B4XPages.GetNativeParent(Me))
        If seldir.Trim.Length<1 Then Return
    'Log(seldir)
 
Last edited:
Upvote 0

peacemaker

Expert
Licensed User
Longtime User
Server app with ABMaterial interface, no B4J UI.
But OK, i used just File.ListFiles and ABMList for folders listing...
 
Upvote 0
Top