Why is microservice able to load 'txt' files from subdirectory but not ".mat" files?

4 ビュー (過去 30 日間)
Aran Ofer
Aran Ofer 2024 年 3 月 27 日
コメント済み: Aran Ofer 2024 年 3 月 28 日 10:33
consider this function loadFile.m:
function w = loadFile()
readlines("subdirectory/txtfile.txt")
load('subdirectory\someMatFile.mat')
w = 1;
end
Which I compiled using:
compiler.build.productionServerArchive
With options set to Include both files in subdirectory as 'Additional Files'. Then I compiled the function to a microservice using compiler.package.microserviceDockerImage.
The issue is - When I start the microservice as a docker container, the function is only able to read from the .txt file in the subdirectory, and not load the '.mat'. This Issue occurs only when loading mat file from subdirectory. if it is located in the same directory as function when compiling, loading is available when running as container.
I modified the DockerFile and rebuilt the image to make the script run as root, so I am confident this isn't a permissions issue.
The error message recieved in the http response:
"error":{"id":"MATLAB:load:couldNotReadFile","message":"Unable to find file or directory 'subdirectory\\someMatFile.mat'}

採用された回答

Fangjun Jiang
Fangjun Jiang 2024 年 3 月 27 日
編集済み: Fangjun Jiang 2024 年 3 月 27 日
Notice the two backslashes "\\" in the error message about the file?
"error":{"id":"MATLAB:load:couldNotReadFile","message":"Unable to find file or directory 'subdirectory\\someMatFile.mat'}
Does it make a difference between slash "/" and back slash "\"? Try to use
fullfile('subdirectory','someMatFile.mat')
ans = 'subdirectory/someMatFile.mat'
filesep
ans = '/'
  1 件のコメント
Aran Ofer
Aran Ofer 2024 年 3 月 28 日 10:33
Thanks, Error turned out to be a combination of path specification and partial inclusion of Additional Files at compilation.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCOM Component Integration についてさらに検索

製品


リリース

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by