putFile command is not working
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Biruntha Gnaneswaran
el 27 de Oct. de 2015
Respondida: Biruntha Gnaneswaran
el 29 de Oct. de 2015
Hi, I follow this to transfer file to raspberry pi hardware. it works well while i sending image. but if i send text file it gives an error. how can i solve this?
mypi = raspi;
putFile(mypi,'output.txt','/home/pi/output.txt');
Error executing command: pscp: output.txt: Cannot open file
0 comentarios
Respuestas (2)
Murat Belge
el 27 de Oct. de 2015
This works fine for me. Can you execute the following commands an post the results:
>> a = dir('output.txt');
>> disp(a)
>> system(mypi,'ls -al')
>> system(mypi,'df -h')
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!