Files

Open #Download folder in #FxFileExplorer
am start -a nextapp.fx.intent.action.OPEN_LOCAL \
-n nextapp.fx/.ui.ExplorerActivity \
--es "nextapp.fx.intent.extra.PATH" "/storage/emulated/0/Download" \
-f 0x10000000

Open microSD card
am start -a nextapp.fx.intent.action.OPEN_LOCAL \
-n nextapp.fx/.ui.ExplorerActivity \
--es "nextapp.fx.intent.extra.PATH" "/storage/4041-393D" \
-f 0x10000000

**Network Paths**
==ftp acws.de==
am start -a nextapp.fx.intent.action.OPEN_NETWORK \
-n nextapp.fx/.ui.ExplorerActivity \
--es "nextapp.fx.intent.extra.HOST" "27" \
--es "nextapp.fx.intent.extra.PATH" "/alceawis.de" \
-f 0x10000000

===sFtp M7350==
am start -a nextapp.fx.intent.action.OPEN_NETWORK \
-n nextapp.fx/.ui.ExplorerActivity \
--es "nextapp.fx.intent.extra.HOST" "25" \
--es "nextapp.fx.intent.extra.PATH" "/2Model" \
-f 0x10000000

_________
Get Ids:

1. All Shortcut IDs from Launcher:
su -c '/data/data/com.termux/files/usr/bin/sqlite3 /data/data/com.sec.android.app.launcher/databases/launcher.db "SELECT _id, title, substr(intent, instr(intent, \"shortcut_id=\")+12, 36) FROM favorites WHERE package=\"nextapp.fx\" ORDER BY _id;"'

2. All Network Host IDs from FX Net.db:
su -c '/data/data/com.termux/files/usr/bin/sqlite3 /data/data/nextapp.fx/databases/Net.db "SELECT _id, host, port, user_name FROM host ORDER BY _id;"'

<=>
Confirm ID
su -c '/data/data/com.termux/files/usr/bin/sqlite3 /data/data/nextapp.fx/databases/Net.db "SELECT * FROM host WHERE _id = 25;"'
_____________
Decoded:
25|1||192.168.0.1||-1|||0|||||||0|0|1755876107645|1694788857459

Type 1 = FTP
Host: 192.168.0.1 (your router/local server)
Port: -1 = default (21)
Username: (empty)
Password: (empty)
____________

3. All Bookmark IDs from FX Bookmarks.db:
su -c '/data/data/com.termux/files/usr/bin/sqlite3 /data/data/nextapp.fx/databases/Bookmarks.db "SELECT _id, type, name, path FROM bookmark ORDER BY _id;"'