Maximum Path Length Exceeded?
56 ビュー (過去 30 日間)
古いコメントを表示
I'm running a compiled script that throws an error at
mkdir(x)
where x is the name of some path. The error is "Maximum path length exceeded".
I try running the exact same line in the command window, and it works just fine.
Any ideas as to what's going on?
Thanks.
3 件のコメント
K E
2015 年 10 月 13 日
Can someone point to where "Long path tool" can be found? I don't see it in the file exchange.
採用された回答
Image Analyst
2014 年 7 月 31 日
編集済み: Image Analyst
2014 年 7 月 31 日
There is a limit to how long directory names can be, like 256 characters or something. What operating system are you using? What is length(x)? If you're making the folder a subfolder of the "current folder" it may be too long because a compiled app really runs out of some secret hidden folder that is really long. Put this in your script just before mkdir and see what it spits out to the console window:
pwd
fprintf('Length of %s = %d', x, length(x));
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で MATLAB Compiler についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!