Skip to content

Instantly share code, notes, and snippets.

View davidbeechey's full-sized avatar

David Beechey davidbeechey

  • @D3-Database-Design-and-Development
  • Scotland
View GitHub Profile
@davidbeechey
davidbeechey / PhotoOrganizer.ps1
Last active June 25, 2023 17:13 — forked from jongio/PhotoOrganizer.ps1
A PowerShell script to organize photos by date taken
Param(
[string]$source,
[string]$dest,
[string]$format = "yyyy/yyyy-MM/yyyy-MM-dd"
)
$shell = New-Object -ComObject Shell.Application
function Get-File-Date {
[CmdletBinding()]