社内SEの話

日々起きたことの記録用

2022-11-17から1日間の記事一覧

【Powershell】Check existence of files in folder

Use Test-Path function for existence check. An error will occur if the file does not actually exist when copying or moving the file. If you execute the command after confirming the existence of the file before executing the command, the in…

【Powershell】フォルダ内のファイル存在確認

Commands use case 存在確認にTest-Path関数を使用します。 ファイルのコピー、移動をさせる時に実際にファイルが無いとエラーになってしまいます。 コマンド実行前にファイルの存在確認した後にコマンド実行すると意図した動作が可能になります。 learn.mic…