Skip to content

Instantly share code, notes, and snippets.

@ptiringo
Last active November 27, 2016 06:17
Show Gist options
  • Save ptiringo/707cc57ab1bf80442b5316c4c4cbcdb6 to your computer and use it in GitHub Desktop.
Save ptiringo/707cc57ab1bf80442b5316c4c4cbcdb6 to your computer and use it in GitHub Desktop.
「送る」with PowerShell
$ErrorActionPrefence = "Stop"
Set-StrictMode -Version 2.0
$baseDir = $args[0] # ショートカットのリンク先で指定する送り先ディレクトリ
$destDir = Join-Path $baseDir "$(Get-Date -Format yyyyMMdd)_$((Get-Item $args[1]).BaseName)"
New-Item $destDir -ItemType Directory
Move-Item -Path $args[1..$args.Length] -Destination $destDir
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment