How do I send a file .txt or .evt between two computers using TCP/IP
8 views (last 30 days)
Show older comments
I need send files but just found how tranfer cha.
0 Comments
Answers (4)
Walter Roberson
on 1 Aug 2015
file_as_char = fileread('YourFile.evt');
Now file_as_char is char that can be sent.
0 Comments
Vanessa ricardo
on 1 Aug 2015
3 Comments
Cedric
on 1 Aug 2015
Edited: Cedric
on 1 Aug 2015
But at this stage I have to ask you how serious your project is, how large are the files that you need to transfer, and why you need to manage file transfer from MATLAB. Because writing a solid/stable client-server system is complicated.
For a small project, I would play with TCPIP etc, because it is "fun" to learn a bit how to deal with these things. If I had to build a solid/stable solution though, I would install an FTP server or a Web server, or anything which supports protocols for transferring files, and I would use this from MATLAB. If one machine had an FTP server for example, I would use
Then I would just test the presence of new files, or use TCPIP for signaling/synchronizing transfers, and let the FTP client/server, WGET, etc, manage file transfers properly.
Vanessa ricardo
on 1 Aug 2015
5 Comments
Walter Roberson
on 2 Aug 2015
Is this to solve a practical problem, or is it a university assignment? If it is to solve a practical problem, then do not use MATLAB for this: use one of the existing tools such as kermit or hyperterm.
See Also
Categories
Find more on Data Import and Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!