Hacker News new | past | comments | ask | show | jobs | submit login

Does anyone knows if it is possible to send folders (includings subfolders) or is just files?

Have been looking for a simple way to share files between pc and android wireless but not via internet, but seems it always is just file/s you could transfer, not folders with everything in them.

If LocalSend is the same and can only transfer selected file/s, have anyone any tips on a alternative app that do the same but also with folders?




Payload lets you drag and drop directories and lists of files. It also handles gracefully resuming after network errors.

No mobile support yet but since Tauri is rolling it out, it’ll be easier to add it as soon as I can make time.

https://payload.app/

Disclaimer: I’m the creator.


Sounds great, will test it out directly an andoid app is released :)

Be able to transfer folder and not just files between devices wireless easy without internet would be amazing.


You can also try Feem (https://feem.io).

It transfers folders without Internet, and has an Android app like you requested.

It also supports resumable file/folder transfers, which majority of other tools mentioned in this thread don't support.

Disclaimer: I'm the creator.


What makes it blazingly fast?


Haha that’s currently a way to explain to people who are used to hosting/sync based cloud solutions that anything that is (a) local p2p and (b) doesn’t need to upload-before-download is much faster. It’s also faster than WebRTC based solutions which there are dozens, WebRTC kind of sucks for large stuff.

That said, the next version will have multi connection tcp striping, which is a lot faster than any single tcp solution in many cases, especially over long distances, similar to some ftp/usenet clients. (Spoiler there will be online p2p transfers. See https://github.com/betamos/rdv if curious)


If you can install software on the computer and have an Android 11 or newer phone, one way is to use the adb tool from android sdk tools to create a connection over the local wifi network which you can adb push folders over.

# Initial Setup

1. Install Android Platform Tools from: https://developer.android.com/tools/releases/platform-tools#... and verify that you can execute the adb tool.

2. Connect the Android device and the computer to the same Wi-Fi network

3. Also connect the Android device to the computer via USB cable (just for this initial setup)

4. Pair the phone with the computer and enable Wireless debugging as described here: https://developer.android.com/tools/adb#connect-to-a-device-...

# Subsequent usage (does not require USB cable):

5. Toggle the Wireless Debugging quick setting toggle to enable adb connections from your computer to your phone

6. Retrieve the Android device's IP address in Settings → About → Status.

7. On the computer command line type: adb connect ip-address-of-device:5555

8. Push the folder to the Android device: adb push /path/to/folder/to/copy/on/computer /sdcard/path/to/destination/on/android/device


Probably not what you are looking for, but Syncthing, Syncthing Fork on Android, if you have LAN. You can switch on only local announce (switch global off in adv. settings).


I think you can make tar.zst pretty easily in Android?




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: