How to upload a .mat file into Amazon s3

조회 수: 7 (최근 30일)
NANDITA SHARMA
NANDITA SHARMA 2020년 12월 7일
댓글: VISHNUDAS V U 2021년 6월 6일
I have stored my data into .mat file and want to upload it into Amazon s3 cloud using MATLAB. I can upload it using command prompt using "aws s3 cp local_path cloud_path" command but can't using MATLAB. So how to upload the file using MATLAB.

채택된 답변

Ameer Hamza
Ameer Hamza 2020년 12월 7일
You can use API to write the data: https://www.mathworks.com/help/matlab/ref/webwrite.html, but that can get complicated for AWS S3.
The easiest solution might be just to use the system() function: https://www.mathworks.com/help/matlab/ref/system.html. You can just run the shell command from MATLAB
system('aws s3 cp local_path cloud_path')
However, note that it does not use the same $PATH variable as your default shell. You will need to use setenv() to add another directory to $PATH variable, or you will need to specify the complete path to aws binary, for example
system('/usr/local/bin/aws s3 cp local_path cloud_path')
There seem to be some options for uploading the file using MATLAB too: https://www.mathworks.com/help/matlab/import_export/work-with-remote-data.html
  댓글 수: 3
Ameer Hamza
Ameer Hamza 2020년 12월 10일
편집: Ameer Hamza 2020년 12월 11일
The method using system command will only work on the local machine. MATLAB online does not have aws command-line tools. For MATLAB online, you might need to use the last option I described.
VISHNUDAS V U
VISHNUDAS V U 2021년 6월 6일
Can you please tell how to obtain local_path and cloud_path .Like what will be its format with a simple example?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Platform and License에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by