필터 지우기
필터 지우기

Maximum Path Length Exceeded?

조회 수: 55 (최근 30일)
Kevin
Kevin 2014년 7월 31일
댓글: Walter Roberson 2015년 10월 13일
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
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.
Walter Roberson
Walter Roberson 2015년 10월 13일
The references to "long path tool" were spam :(

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

채택된 답변

Image Analyst
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));
  댓글 수: 1
Kevin
Kevin 2014년 7월 31일
This is just what I needed. In x I had somehow included the variable 'path', which put my entire search path in the directory name. Thanks!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Search Path에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by