Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sharing Files Between Windows and Android over WiFi

Is there a way ( protocol ?) to share & exchange files between pc with Windows os and a mobile phone with Android os over WiFi ?

like image 768
HSN Avatar asked Oct 07 '22 04:10

HSN


1 Answers

For an Ad Hoc Android to PC connection (Per the source below):

  1. Connect your computer with virtual hotspot created by Android device.

  2. Install any FTP Server app on Android device. It'll NOT give you IP of device for sure.

  3. In your computer, find IP of Default Gateway of Wi-Fi network of Step 1 (In Windows, you can use ipconfig cmd command). Its the IP of your device.

  4. Use any FTP Client software on computer. Use ftp://IP:Port (Port is generally configurable in FTP server app). Enter username & password configured in FTP Server app. Done!

Then they said "After some testing with different settings I got it to work flawlessly, thank you very much. For anyone else looking to do this: I used Android Wifi Tether to start the network using Softap mode, connected to it with the computer, started an FTP server (some server apps might need you to enable 3G mode, even though 3G data isn't actually used, you can turn data connections off if you're paranoid."

Source


For Internet Based Connections:

You may simply want to transfer the files to a hosted server with push notifications to "pull" down the files to the various devices.

Scope this out: http://www.eckstreme.net/

The coder of that app may be willing to help you get off to a better start, email him.

like image 69
Jeremiah Isaacson Avatar answered Oct 10 '22 03:10

Jeremiah Isaacson