アプリケーションコン​パイラー→パッケージ​化→アプリケーション​ソフト(.exe)を​起動してもエラーが発​生

9 visualizzazioni (ultimi 30 giorni)
丈太郎 森川
丈太郎 森川 il 24 Set 2021
Commentato: 丈太郎 森川 il 27 Set 2021
下記内容でAAA(添付zipファイル参照)のフォルダをリスト化し、リストしたテキストデータをcsvに落とすアプリケーションを作りたいです。ライブスクリプトでは問題なく動きますが、アプリケーションコンパイラー→パッケージ化→アプリケーションソフト(.exe)で作ったアプリケーションソフトを起動すると「'1.txt'が見つかりません。・・・」とエラーがでます。
対処方法を教えていただけないでしょうか。よろしくお願いします。
List = dir('AAA/*.txt')
List = 0×1 empty struct array with fields: name folder date bytes isdir datenum
for n = 1:length(List)
List1{n} = readcell(List(n).name)
List2 = cat(1,List1{1:n})
end
writecell(List2,"List.csv")
Unrecognized function or variable 'List2'.

Risposta accettata

Kojiro Saito
Kojiro Saito il 24 Set 2021
List(n).nameにはファイル名(例:1.txt)しか含まれませんので、exeファイルと同じフォルダ階層に1.txtと2.txtが置かれている必要があります。
AAAフォルダに1.txtなどがあるとのことなので、fullfileを付けてフォルダ名を含むファイルパスを指定してみてはいかがでしょうか?
List = dir('AAA/*.txt')
for n = 1:length(List)
List1{n} = readcell(fullfile(List(n).folder, List(n).name))
List2 = cat(1,List1{1:n})
end
writecell(List2,"List.csv")
また、アプリケーションコンパイラでexeにした後、exeと同じフォルダにAAAを置く必要があります。
  1 Commento
丈太郎 森川
丈太郎 森川 il 27 Set 2021
早速のご回答ありがとうございます!
こちらで出来ました。
今後ともよろしくお願いいたします。

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Application Deployment in Help Center e File Exchange

Prodotti


Release

R2021b

Community Treasure Hunt

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

Start Hunting!