HLM
HLM

Reputation: 41

Import data from Raspberry Pi to PC using Ethernet

I am using Raspberry Pi model B, in which I am running a program created with python, my program has to write some data into some Excel files. Now I want to import those files using my PC via ehernet. My pc is running windows. It would be more useful to create a gui which can help users to easily import those files.

Upvotes: 0

Views: 222

Answers (1)

yegorich
yegorich

Reputation: 4849

You can use CIFS. Just create a shared folder in Windows and bind it in the /etc/fstab on RPi.

Another approach would be to use SSH i.e. scp.

Upvotes: 2

Related Questions