mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-21 09:28:21 +02:00
Update count-lines-of-code.ps1
This commit is contained in:
parent
aa7ae2fff1
commit
35da2ffb21
@ -1,39 +1,39 @@
|
|||||||
<#
|
<#
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Counts lines of code
|
Counts the lines of code (LOC)
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This PowerShell script counts the number of code lines in a folder (including subfolders).
|
This PowerShell script counts the number of code lines in a folder (including subfolders).
|
||||||
.PARAMETER Folder
|
.PARAMETER path
|
||||||
Specifies the path to the folder
|
Specifies the path to the folder
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./count-lines-of-code.ps1 .
|
PS> ./count-lines-of-code.ps1 .
|
||||||
⏳ Counting lines at 📂C:\PowerShell\Scripts ...
|
✔️ Counted 19609 lines of code (LOC) in 577 files in 📂Scripts (took 1 sec)
|
||||||
✔️ 📂Scripts contains 15287 lines of code in 485 files (took 1 sec)
|
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz | License: CC0
|
Author: Markus Fleschutz | License: CC0
|
||||||
#>
|
#>
|
||||||
|
|
||||||
param([string]$Folder = "")
|
param([string]$path = "")
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if ($Folder -eq "" ) { $Folder = read-host "Enter the path to the folder" }
|
if ($path -eq "" ) { $Folder = Read-Host "Enter the path to the folder" }
|
||||||
|
|
||||||
$StopWatch = [system.diagnostics.stopwatch]::startNew()
|
$StopWatch = [system.diagnostics.stopwatch]::startNew()
|
||||||
$Folder = Resolve-Path "$Folder"
|
$path = Resolve-Path "$path"
|
||||||
"⏳ Counting lines at 📂$Folder ..."
|
|
||||||
|
|
||||||
|
Write-Progress "⏳ Counting lines of code in 📂$path ..."
|
||||||
[int]$Files = [int]$CodeLines = 0
|
[int]$Files = [int]$CodeLines = 0
|
||||||
Get-ChildItem -Path $Folder -Include *.c,*.h,*.cpp,*.hpp,*.java,*.ps1 -Recurse | ForEach-Object {
|
Get-ChildItem -Path $path -Include *.c,*.h,*.cpp,*.hpp,*.java,*.ps1 -Recurse | ForEach-Object {
|
||||||
$FileStats = Get-Content $_.FullName | Measure-Object -line
|
$FileStats = Get-Content $_.FullName | Measure-Object -line
|
||||||
$CodeLines += $FileStats.Lines
|
$CodeLines += $FileStats.Lines
|
||||||
$Files++
|
$Files++
|
||||||
}
|
}
|
||||||
|
Write-Progress -completed "."
|
||||||
|
|
||||||
$FolderName = (Get-Item "$Folder").Name
|
$FolderName = (Get-Item "$path").Name
|
||||||
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
|
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
|
||||||
"✔️ 📂$FolderName contains $CodeLines lines of code in $Files files (took $Elapsed sec)"
|
"✔️ Counted $CodeLines lines of code (LOC) in $Files files in 📂$FolderName (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])"
|
||||||
|
Loading…
Reference in New Issue
Block a user