PowerShell/Scripts/count-lines-of-code.ps1

41 lines
1.2 KiB
PowerShell
Raw Normal View History

2022-08-10 15:57:43 +02:00
<#
.SYNOPSIS
2023-09-12 22:24:57 +02:00
Counts the lines of code (LOC)
2022-08-10 15:57:43 +02:00
.DESCRIPTION
This PowerShell script counts the number of code lines in a folder (including subfolders).
2023-09-12 22:24:57 +02:00
.PARAMETER path
2022-08-10 15:57:43 +02:00
Specifies the path to the folder
.EXAMPLE
2023-08-06 21:35:36 +02:00
PS> ./count-lines-of-code.ps1 .
2023-09-12 22:24:57 +02:00
Counted 19609 lines of code (LOC) in 577 files in 📂Scripts (took 1 sec)
2022-08-10 15:57:43 +02:00
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
2023-09-12 22:24:57 +02:00
param([string]$path = "")
2022-08-10 15:57:43 +02:00
try {
2023-09-12 22:24:57 +02:00
if ($path -eq "" ) { $Folder = Read-Host "Enter the path to the folder" }
2022-08-10 15:57:43 +02:00
$StopWatch = [system.diagnostics.stopwatch]::startNew()
2023-09-12 22:24:57 +02:00
$path = Resolve-Path "$path"
2022-08-10 15:57:43 +02:00
2023-09-12 22:24:57 +02:00
Write-Progress "⏳ Counting lines of code in 📂$path ..."
2022-08-10 15:57:43 +02:00
[int]$Files = [int]$CodeLines = 0
2023-09-12 22:24:57 +02:00
Get-ChildItem -Path $path -Include *.c,*.h,*.cpp,*.hpp,*.java,*.ps1 -Recurse | ForEach-Object {
2022-08-10 15:57:43 +02:00
$FileStats = Get-Content $_.FullName | Measure-Object -line
$CodeLines += $FileStats.Lines
$Files++
}
2023-09-12 22:24:57 +02:00
Write-Progress -completed "."
2022-08-10 15:57:43 +02:00
2023-09-12 22:24:57 +02:00
$FolderName = (Get-Item "$path").Name
2022-08-10 15:57:43 +02:00
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
2023-09-12 22:24:57 +02:00
"✔️ Counted $CodeLines lines of code (LOC) in $Files files in 📂$FolderName (took $Elapsed sec)"
2022-08-10 15:57:43 +02:00
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
2023-09-12 22:24:57 +02:00
}