Update count-lines-of-code.ps1

This commit is contained in:
Markus Fleschutz 2023-10-09 16:54:17 +02:00
parent 7baef5ef74
commit 1756897ae9

View File

@ -2,12 +2,12 @@
.SYNOPSIS .SYNOPSIS
Counts the lines of code (LOC) Counts the lines of code (LOC)
.DESCRIPTION .DESCRIPTION
This PowerShell script counts the number of code lines in a directory tree. This PowerShell script counts the number of code lines in source code files (.c/.h/.cpp/.hpp/.java/.ps1/.txt/.md) within a directory tree.
.PARAMETER path .PARAMETER path
Specifies the path to the directory tree. Specifies the path to the directory tree.
.EXAMPLE .EXAMPLE
PS> ./count-lines-of-code.ps1 . PS> ./count-lines-of-code.ps1 cmake
19765 lines of code (LOC) in 578 files in 📂Scripts (it took 1 sec) 📂cmake has 11411 source code files with 639921 lines of code (LOC, took 34 sec)
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES
@ -19,21 +19,20 @@ param([string]$path = "")
try { try {
if ($path -eq "" ) { $path = Read-Host "Enter the path to the directory tree" } if ($path -eq "" ) { $path = Read-Host "Enter the path to the directory tree" }
Write-Progress "⏳ Counting lines of code (LOC)..."
$stopWatch = [system.diagnostics.stopwatch]::startNew() $stopWatch = [system.diagnostics.stopwatch]::startNew()
$path = Resolve-Path "$path" $path = Resolve-Path "$path"
Write-Progress "⏳ Counting lines of code in 📂$path ..." [int64]$files = [int64]$LOC = 0
[int]$files = [int]$LOC = 0 Get-ChildItem -Path $path -Include *.c,*.h,*.cpp,*.hpp,*.java,*.ps1,*.txt,*.md -Recurse | ForEach-Object {
Get-ChildItem -Path $path -Include *.c,*.h,*.cpp,*.hpp,*.java,*.ps1 -Recurse | ForEach-Object { $LOC += (Get-Content $_.FullName | Measure-Object -line).Lines
$fileStats = Get-Content $_.FullName | Measure-Object -line
$LOC += $fileStats.Lines
$files++ $files++
} }
Write-Progress -completed "."
$folderName = (Get-Item "$path").Name $folderName = (Get-Item "$path").Name
Write-Progress -completed " "
[int]$Elapsed = $stopWatch.Elapsed.TotalSeconds [int]$Elapsed = $stopWatch.Elapsed.TotalSeconds
"✔️ $LOC lines of code (LOC) in $files files in 📂$folderName (took $Elapsed sec)" "✔️ 📂$folderName has $files source code files with $LOC lines of code (LOC, took $Elapsed sec)"
exit 0 # success exit 0 # success
} catch { } catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"