0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ファイルの最終更新日を確認してyyyyMMのフォルダを作成し、そこにファイルを移動するPowerShell

Posted at

やりたいこと

  • フォルダ内のファイルの最終更新日を確認し、yyyyMMのフォルダを作成
  • ファイルをそのフォルダに移動する

環境

  • Windows 10 Pro 22H2
  • Windows PowerShell 5.1

ソース

movefiles.ps1
###############################################################################
### ファイルの最終更新日を確認してyyyyMMのフォルダを作成し、そこにファイルを移動する。
###############################################################################

#このファイルの名前を取得
$myname = $MyInvocation.MyCommand.Name.ToString()

Get-ChildItem -File | foreach{
    
    #このファイルを除く
    if($_.Name.ToString() -ne $myname){
    
        #ファイルの最終更新日から年月yyyyMMを取得
        $yyyyMM = $_.LastWriteTime.ToString('yyyyMM')

        #フォルダの作成
        New-Item -Path . -Name $yyyyMM -ItemType 'directory' -Force

        #ファイルの移動
        Move-Item -Path $_ -Destination $yyyyMM
    }
}

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?