Skip to content

Instantly share code, notes, and snippets.

View Silloky's full-sized avatar

Elias Kirkwood Silloky

  • France
  • 09:25 (UTC +02:00)
View GitHub Profile
@lafleurh
lafleurh / SyncFolders.ps1
Last active June 3, 2024 12:53
PowerShell script to do a two-way sync of Windows folders
Param (
[string]$LeftFolder,
[string]$RightFolder
)
function CreateFolderStructure([string]$Path)
{
if (-not [string]::IsNullOrWhiteSpace($Path))
{
if (-not (Test-Path $Path))