how can I read file from a different directory

조회 수: 2 (최근 30일)
Zeynab Mousavikhamene
Zeynab Mousavikhamene 2019년 10월 11일
답변: per isakson 2019년 10월 11일
the matlab script that I am running from is in directory "a" but the I need to read text file using "fileread" from an directory b in the script. How can I navigate from existing directory (running script) which is "a" to directory "b"?

채택된 답변

per isakson
per isakson 2019년 10월 11일
If you know the full directory name of 'b' use that, i.e
chr = fileread( fullfile( 'c:', 'full', 'directory', 'name', 'of', 'b', [ text_file_name, '.txt' ] ) );
This way you can read the file from anywhere

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 File Name Construction에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by