Runtime Problem with function movefile()
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hey there, I'm reordering folders and rename them. Therefor I use movefile(). The weird thing is that if I run my code in debug mode linewise, everything works fine but when running it normaly, nothing happens. I also checked the flags set bei die funcion. The error that occurs is status 0 and that an activation key can't be found. Anyone an idea? I also tried waitfor and pause but nothing changed.
medtech
1 comentario
Jan
el 21 de Mayo de 2017
Editada: Jan
el 21 de Mayo de 2017
Please post the code and a complete copy of the error message. "An activation key"??? This sounds such strange, that you should be very curious. Is there any eval or assignin in the code?
Why do you assume that the runtime is the problem? I do not see any evidence for this yet.
Didn't I post an asnwer to this problem already? If so, please add a link to the other thread. Thanks.
Respuestas (2)
Abhinav Gurram
el 22 de Mayo de 2017
As Jan pointed out, this issue doesn't necessarily look like something that is being caused due to MATLAB Runtime, unless you are trying to run this code outside of MATLAB, as a standalone application. Therefore, I am writing this answer assuming that you have built a standalone application and are facing issues. Be advised that path management works differently in deployed standalone applications, hence, something that works in MATLAB using relative paths might not work in a standalone application. If possible, make sure you are using complete/absolute/full paths, as opposed to relative paths. You can view the following article to understand path management in deployed applications: Path Management
The fact that you are receiving a licensing error might also be occurring if you do not have a MATLAB Compiler license.
However, if you are building a standalone, please post a detailed description of the issue, and sample code if possible.
Hope this helps!
0 comentarios
Ver también
Categorías
Más información sobre Deploy to C++ Applications Using mwArray API (C++03) en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!