I have used such apps before, but it seems they have gone unmaintained and don't work anymore.
python -m http.server 8000
You first start one server on a desktop/laptop which has the software, and then any client (Android, iOS, PlayStation, Kindle, etc) with a web browser (no need to install any client software) can upload or download files from the web GUI.You can download prebuilt binaries for x86-64 Linux, Windows, or Mac OS (sorry, no prebuilt binaries for Apple Silicon, but they could be added if there is sufficient demand) from https://github.com/akovacs/uploadserver/releases/ or compile from source using a nightly rust toolchain if you prefer.
Compared to cloud services or `python -m http.server 8000`, this is extremely fast since the server is written in rust, it is fairly simple (compiled and stripped binary is typically less than 3MB), it sends everything over local LAN, it seems to handle large files (over 4GB) fairly well, and you only need to install the software on one machine.
For additional details, please see: https://news.ycombinator.com/item?id=39665095
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?
# 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