Программа для управления файлами
Если вам регулярно нужно передавать файлы на планшет или мобильное устройство и обратно, вы знаете, как неудобен этот процесс. Нужно не только настроить параметры USB-соединения, но и просматривать и управлять файлами — это раздражает.
ADB Explorer — небольшая программа, которая упрощает предварительный просмотр и управление файлами. Она доступна в Microsoft Store, но вы также можете установить её самостоятельно. Приложение имеет стильный интерфейс Fluent. Чтобы начать работу, подключитесь к ADB. Все доступные подключения будут аккуратно отображены. Через настройки можно дополнительно настроить отображение приложения.
Программа позволяет выполнять различные операции с файлами, включая вырезание, копирование, вставку, передачу и другие действия. Также возможен просмотр файлов с правами root, но он покажет только те файлы, которые поддерживают эту функцию.
В последней версии разработчик добавил функцию текстового редактора, так что вы также можете вносить необходимые правки. Независимо от выбранной операции, все действия отображаются в очереди с прогрессом, чтобы вы точно знали, что происходит.
По словам разработчика, программа включает дополнительную функцию корзины, которая хранит удалённые файлы. Если вы передумаете, то сможете легко восстановить их оттуда или окончательно удалить ненужные.
Если вы регулярно используете оболочку ADB и хотите управлять файлами без необходимости постоянно заходить в настройки, попробуйте ADB Explorer.
Плюсы программы:
- Стильный интерфейс.
- Возможность выполнять различные операции с файлами.
- Отображение действий в очереди с прогрессом.
- Дополнительная функция корзины.
Скачать с официальной страницы
ADB Explorer
Похожие программы
Нейросеть подберет аналоги ADB Explorer | |
Категория | Файловые менеджеры |
Разработчик | Alex4SSB |
Размер | 4.8 MB |
Лицензия | MIT License |
ОС |
|
Скриншот программы
You should upgrade or use an alternative browser.
-
#2
No errors or issues in Window 10, the window did read as non-responsive during the transfer but I assumed it was doing its thing and left it alone.
Only suggestion would be some sort of progress indicator, maybe that would stop the program from being «unresponsive»?
Thanks for your work, very easy to use!
-
#3
Just tried today, worked great! Windows 10 transfer to Pixel 6 Pro — 150gb in 15 minutes, much faster than MTP!No errors or issues in Window 10, the window did read as non-responsive during the transfer but I assumed it was doing its thing and left it alone.
Only suggestion would be some sort of progress indicator, maybe that would stop the program from being «unresponsive»?
Thanks for your work, very easy to use!View attachment 5459243
Thank you for your reply!
Ok, I will try to fix it.
-
#4
Last edited:
-
#6
Latest build for win-x64:
ADB File Explorer v1.2.0
Download
-
#7
Is root adb server planned to be implemented?
-
#8
Through CLI instead I was able to copy the desired folder.
-
#9
Hi!Is root adb server planned to be implemented?
root needed
-
#10
-
#11
I was just looking for a quick way to copy a folder from adb TWRP but when I tried to use this app there is the phone icon with a red cross (see picture) and nothing happens by clicking.
Through CLI instead I was able to copy the desired folder.View attachment 5623663
I also found the same error for Samsung Galaxy M20 and unable to access files
-
#12
I hope this message finds you. First of all, thank you for developing this program! It has been immensely helpful for me in copying files to and from my device. I find that transfers via ADB are much faster and more reliable than using MTP protocol.
One thing I would like to suggest, I think it would be much better if the file picker interface could remember location of the last folder, as it always defaults to the application folder root where ADBFileExplorer.exe is located.
Also, it would be helpful if we could select multiple folders to copy at the same time. Currently, the file picker interface only lets you choose one folder at a time, and holding Ctrl whilst left-clicking does not select multiple folders.
-
#13
-
#14
-
#15
-
#16
Last edited:
-
#17
ADB File Explorer win-v1.2.0
working perfectly on Windows 11 64 bit
Attachments
-
ADB File Explorer win-v1.2.0.zip
Last edited:
-
#18
-
#19
Traceback (most recent call last):
File «app.py», line 22, in <module>
File «<frozen importlib._bootstrap>», line 1007, in _find_and_load
File «<frozen importlib._bootstrap>», line 986, in _find_and_load_unlocked
File «<frozen importlib._bootstrap>», line 680, in _load_unlocked
File «PyInstaller\loader\pyimod03_importers.py», line 495, in exec_module
File «core\main.py», line 23, in <module>
File «<frozen importlib._bootstrap>», line 1007, in _find_and_load
File «<frozen importlib._bootstrap>», line 986, in _find_and_load_unlocked
File «<frozen importlib._bootstrap>», line 680, in _load_unlocked
File «PyInstaller\loader\pyimod03_importers.py», line 495, in exec_module
File «core\managers.py», line 94, in <module>
File «core\managers.py», line 96, in PythonADBManager
File «helpers\tools.py», line 126, in get_python_rsa_keys_signer
FileNotFoundError: [Errno 2] No such file or directory: ‘C:\\Users\\%USER%/.android/adbkey.pub’
Attachments
Similar threads
ADB File Explorer
Simple File Explorer for adb devices. Uses python library adb-shell
or command-line tool adb
.
Features:
- List of adb devices
- Connect via IP (TCP)
- Listing / Pulling / Pushing files
- Renaming and Deleting files
Screenshots
Devices & Notifications
Files
Requirements
Python3
(below version 3.8 not tested)
sudo apt-get install python3-pip python3-pyqt5 # For Linux Ubuntu
pip install PyQt5 libusb1 adb-shell
adb
(binary) should exist in project root folder or in$PATH
Launch
- Clone the repo
- cd ADBFileExplorer
- Edit settings.json from the project root if necessary.
src/app/settings.json
{ "adb_path": "adb", // "adb_core": "external", "adb_kill_server_at_exit": false, "preserve_timestamp": true, "adb_run_as_root": false }
adb_path
— Full adb path or just ‘adb’ if the executable is in$PATH
adb_core
— Set to ‘external’ to use externaladb
executable, otherwise the app will useadb-shell
# First install python-venv in root folder. It should be like ADBFileExplorer/venv pip install -r requirements.txt run.bat # To start application on Windows bash run.sh # To start application on Linux...
Attention
Application uses by default adb-shell
. There may be problems with listing, pushing, or pulling files using adb-shell
.
For a better experience, try adding "adb_core": "external"
to settings.json
.
License
ADB File Explorer [python-app]
Copyright (C) 2022 Azat Aldeshov
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
Item Preview
There Is No Preview Available For This Item
This item does not appear to have any files that can be experienced on Archive.org.
Please download files in this item to interact with them on your computer.
Show all files
112
Views
DOWNLOAD OPTIONS
Uploaded by
tenent007963
on