count lines of code for entire project
55 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Neesha
el 6 de Oct. de 2014
Comentada: Willingo
el 1 de Abr. de 2022
Hi All,
I am looking into counting source code of lines for entire project. Is there a way to do it? I looked into sloc() somebdy posted but it counts only one file at a time. I want to count for the entire project so soemthign can go into the foler and look for each and every .m file
0 comentarios
Respuesta aceptada
Geoff Hayes
el 6 de Oct. de 2014
Neesha - try using David Roberts' FEX submission slocDir which calls the sloc function that you mention above.
2 comentarios
Willingo
el 1 de Abr. de 2022
If anyone in the future tries to call all the project file names such as
p = currentProject
fNames = [p.Files.Path]'
Be aware that fNames is a string array, which did not exist at the time of sloc, so you need to reconvert it into a character array. I make no promises that this works for all cases, but I used sloc in this manner
p = currentProject
filePaths = char([p.Files.Path]');
myCount = struct;
count0TF = [];
for i = 1:height(filePaths)
try
n = numel(myCount);
myCount(n+1).count = sloc(filePaths(i,:));
[~,fName] = fileparts(filePaths(i,:));
myCount(n+1).filename = fName;
catch
end
end
myProjectTable = struct2table(myCount)
Más respuestas (1)
Demetrio Rodriguez Tereshkin
el 14 de Abr. de 2016
This is what you are looking for: https://github.com/AlDanial/cloc
0 comentarios
Ver también
Categorías
Más información sobre File Operations 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!