KohyaSS/examples/caption.ps1

13 lines
451 B
PowerShell
Raw 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-19 13:49:42 +00:00
$files = Get-ChildItem $folder$file_pattern -Include *.png,*.jpg,*.webp -File
foreach ($file in $files)
{
New-Item -ItemType file -Path $folder -Name "$($file.BaseName).txt" -Value $caption_text
}