KohyaSS/examples/caption.ps1

14 lines
542 B
PowerShell
Raw Permalink Normal View History

# This powershell script will create a text file for each files in the folder
#
# Usefull to create base caption that will be augmented on a per image basis
2022-11-19 13:49:42 +00:00
$folder = "D:\some\folder\location\"
$file_pattern="*.*"
2022-11-19 13:49:42 +00:00
$caption_text="some caption text"
2022-11-21 12:50:04 +00:00
$files = Get-ChildItem $folder$file_pattern -Include *.png, *.jpg, *.webp -File
foreach ($file in $files) {
if (-not(Test-Path -Path $folder\"$($file.BaseName).txt" -PathType Leaf)) {
New-Item -ItemType file -Path $folder -Name "$($file.BaseName).txt" -Value $caption_text
}
2022-11-19 13:49:42 +00:00
}