Runtime Problem with function movefile()
2 次查看(过去 30 天)
显示 更早的评论
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 个评论
Jan
2017-5-21
编辑:Jan
2017-5-21
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.
回答(2 个)
Abhinav Gurram
2017-5-22
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 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!