How do I send a file .txt or .evt between two computers using TCP/IP
8 次查看(过去 30 天)
显示 更早的评论
I need send files but just found how tranfer cha.
0 个评论
回答(4 个)
Walter Roberson
2015-8-1
file_as_char = fileread('YourFile.evt');
Now file_as_char is char that can be sent.
0 个评论
Vanessa ricardo
2015-8-1
3 个评论
Cedric
2015-8-1
编辑:Cedric
2015-8-1
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
2015-8-1
5 个评论
Walter Roberson
2015-8-2
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.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Import and Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!