Answers for "count all lines of code in directory windows"

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

Code answers related to "count all lines of code in directory windows"

Browse Popular Code Answers by Language