mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
79 lines
2.5 KiB
PowerShell
Executable File
79 lines
2.5 KiB
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
copy-photos-sorted.ps1 [<source-dir>] [<target-dir-tree>]
|
|
.DESCRIPTION
|
|
Copies all photos in source-dir sorted by year and month into the target-dir-tree
|
|
.EXAMPLE
|
|
PS> .\copy-photos-sorted.ps1 C:\MyPhotos C:\MyPhotoAlbum
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz / License: CC0
|
|
#>
|
|
|
|
param([string]$SourceDir = "", [string]$TargetDirTree = "")
|
|
|
|
function CopyFile { param([int]$Num, [string]$SrcPath, [string]$Filename, [int]$Date, [string]$DstDir)
|
|
[int]$Year = $Date / 10000
|
|
[int]$Month = ($Date / 100) % 100
|
|
$MonthDir = switch($Month) {
|
|
1 {"01 JAN"}
|
|
2 {"02 FEB"}
|
|
3 {"03 MAR"}
|
|
4 {"04 APR"}
|
|
5 {"05 MAY"}
|
|
6 {"06 JUN"}
|
|
7 {"07 JUL"}
|
|
8 {"08 AUG"}
|
|
9 {"09 SEP"}
|
|
10 {"10 OCT"}
|
|
11 {"11 NOV"}
|
|
12 {"12 DEC"}
|
|
}
|
|
$DstPath = "$DstDir/$Year/$MonthDir/$Filename"
|
|
if (test-path "$DstPath" -pathType leaf) {
|
|
"#$($Num): $Filename exists already, skipping..."
|
|
} else {
|
|
"#$($Num): $Filename is copied..."
|
|
new-item -path "$DstDir" -name "$Year" -itemType "directory" -force | out-null
|
|
new-item -path "$DstDir/$Year" -name "$MonthDir" -itemType "directory" -force | out-null
|
|
copy-item "$SrcPath" "$DstPath" -force
|
|
}
|
|
}
|
|
|
|
try {
|
|
if ($SourceDir -eq "") { $SourceDir = read-host "Enter source directory" }
|
|
if ($TargetDirTree -eq "") { $TargetDirTree = read-host "Enter target directory tree" }
|
|
|
|
$StopWatch = [system.diagnostics.stopwatch]::startNew()
|
|
$Files = (get-childItem "$SourceDir\*.jpg" -attributes !Directory)
|
|
"Found $($Files.Count) photos in 📂$SourceDir..."
|
|
[int]$Num = 0
|
|
foreach ($File in $Files) {
|
|
$Num++
|
|
$Filename = (get-item "$File").Name
|
|
if ("$Filename" -like "IMG_*_*.jpg") {
|
|
$Array = $Filename.split("_")
|
|
CopyFile $Num "$File" "$Filename" $Array[1] "$TargetDirTree"
|
|
} elseif ("$Filename" -like "IMG-*-*.jpg") {
|
|
$Array = $Filename.split("-")
|
|
CopyFile $Num "$File" "$Filename" $Array[1] "$TargetDirTree"
|
|
} elseif ("$Filename" -like "PANO_*_*.jpg") {
|
|
$Array = $Filename.split("_")
|
|
CopyFile $Num "$File" "$Filename" $Array[1] "$TargetDirTree"
|
|
} elseif ("$Filename" -like "PANO-*-*.jpg") {
|
|
$Array = $Filename.split("-")
|
|
CopyFile $Num "$File" "$Filename" $Array[1] "$TargetDirTree"
|
|
} else {
|
|
"#$($Num): $Filename with unknown filename format"
|
|
}
|
|
}
|
|
|
|
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
|
|
"✔️ copied $Num photos sorted by year and month to 📂$TargetDirTree in $Elapsed sec"
|
|
exit 0
|
|
} catch {
|
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|