Maximum Path Length Exceeded?

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 comentarios

Image Analyst
Image Analyst el 31 de Ag. de 2014
As he said below, his problem was that "x" was his entire search path , not just one folder, though "Long path tool" may be useful in some other situations. Where can someone get more info on it?
K E
K E el 13 de Oct. de 2015
Can someone point to where "Long path tool" can be found? I don't see it in the file exchange.
Walter Roberson
Walter Roberson el 13 de Oct. de 2015
The references to "long path tool" were spam :(

Iniciar sesión para comentar.

 Respuesta aceptada

Image Analyst
Image Analyst el 31 de Jul. de 2014
Editada: Image Analyst el 31 de Jul. de 2014

3 votos

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 comentario

Kevin
Kevin el 31 de Jul. de 2014
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!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre MATLAB Compiler en Centro de ayuda y File Exchange.

Productos

Preguntada:

el 31 de Jul. de 2014

Comentada:

el 13 de Oct. de 2015

Community Treasure Hunt

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

Start Hunting!

Translated by