How to connect the computer with the server?
5 次查看(过去 30 天)
显示 更早的评论
I have measurement running and I get results out of it around 100MB per measurement and I want to copy these files to the server automatically after each measurement and then delete the files from the computer.
How can I do that?
1 个评论
采纳的回答
Jan
2013-5-24
编辑:Jan
2013-5-24
It depends on how the client is connected to the server. Perhaps you can write directly to a network drive, when there is a shared folder on the server. Or you have to do a scp or ftp call. But it is your job to find out this detail and we cannot guess it. In addition, this question does not concern Matlab, but your network setup. Therefore it will be better to ask your network admin, and not a Matlab forum.
[EDITED] If you find out, that there is e.g. a shared folder on the server, which is available as network drive under Windows, you can perform the copy under Matlab easily using copyfile. Otherwise SCP could be a solution, e.g.:
3 个评论
Jan
2013-5-24
See [EDITED]. So at first clear the question how the server can be connected, then decide how to do this from Matlab afterwards.
更多回答(1 个)
Image Analyst
2013-5-24
I copy stuff back and forth all the time to our statistics server simply using the copyfile() function in MATLAB. It's really easy. Did you try that?
1 个评论
Image Analyst
2013-5-27
I totally don't understand. What do you mean "automatically"? Just put that copyfile() line in your code after each measurement, and it will do it "automatically" after each measurement.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!