53 lines
2.0 KiB
Markdown
53 lines
2.0 KiB
Markdown
|
|
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;"' |