Error in determining the root folder
2 views (last 30 days)
Show older comments
Hi ,
I'm trying to use determineRootFolder but Im getting an error: [Excel_File_Name,templatePath,outputFilePath] = determineRootFolder({Excel_File_Name,templatePath,outputFilePath},{'New Volume','New Volume','New Volume'});
How can I use determineRootFolder properly?
Thanks, Bahar
3 Comments
Walter Roberson
on 5 Nov 2018
https://github.com/vshaxe/vscode-checkstyle/blob/master/src/Main.hx or http://www.massapi.com/class/po/PortletRequest.html have java implementations, which appear to do different things, and which do not appear to have the same function signature as you are using.
I do not find a MATLAB function by that name.
Answers (1)
Sebastian Castro
on 7 Nov 2018
If you want the name of the current folder
>> folderName = pwd;
If you want the name of the file containing the MATLAB script/function itself:
>> folderName = fileparts(mfilename('fullpath'));
- Sebastian
0 Comments
See Also
Categories
Find more on Call Java from MATLAB in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!