Answers for "see how many lines of code are in folder"

4

count lines of code in a folder windows

// For Windows 
dir -Recurse *.* | Get-Content | Measure-Object -Line
			   ^
			   Extension of the files to consider.
Posted by: Guest on May-24-2021
2

check lines of code in a folder

find . -name '*.[FileExtention]' | xargs wc -l
Posted by: Guest on December-08-2020

Code answers related to "see how many lines of code are in folder"

Browse Popular Code Answers by Language