Created
March 6, 2024 16:37
-
-
Save dcabines/c5773e8d773c5f7acdb469422e746915 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
foreach($file in Get-ChildItem -File) { | |
$folderName = $file.CreationTime.ToString('yyyy-MM-dd') | |
if (!(Test-Path -Path $folderName -PathType Container)) | |
{ | |
New-Item -Path $folderName -ItemType Directory | |
} | |
Move-Item -Path $file -Destination $folderName | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment