Skip to content

Instantly share code, notes, and snippets.

# General use .gitignore for XenForo 2 addons.
# IDE files
/.idea/
# Folders
/_releases/*
/_data/*
# File Extensions
@Ghostlyr
Ghostlyr / sort-by-date.ps1
Created August 16, 2018 16:30
PowerShell - Sort files by date
# Move files in selected directory to new folders named with file creation date
# Author: GhostlyR (https://github.com/Ghostlyr)
param (
[string] $dir,
[string] $format = "yyyy.MM.dd",
[string] $exclude = "sort-by-date.ps1"
)
if (!$dir) {