- SVG2PNG . . . . 2 matches
#keyworda inkscape, svg, png, icon, powershell, cli
$inputFolder = "C:\path\to\svg\folder"
# SVG 파일 목록 가져오기
$svgFiles = Get-ChildItem "$inputFolder\*.svg"
$totalFiles = $svgFiles.Count
Write-Host "Total SVG files to process: $totalFiles"
$batchFiles = $svgFiles | Select-Object -Skip $startIndex -First $batchSize