概要
- 長年 Mac 上の iTunes で育てあげたライブラリを、Windows のほうで復旧させようと思い立った
- とりあえず SSD でデータを丸ごと引き上げたものの、macOS 特有の不可視ファイル(.DS_store など)も含まれているため、まずはこれらのお掃除をせねばとなった
- 手作業で行うのは無理な量なので、一括削除用の PowerShell スクリプトを作成した
- ソース生成には ChatGPT 4 を使用した
作成したもの
ソース
# masOSで自動生成される不可視ファイルを一括削除する
function Set-removeMacFiles {
# 現在のディレクトリを取得
$currentDirectory = Get-Location
# ログファイルのディレクトリを設定
$logDirectory = "C:\Users\hi3103\OneDrive\scripts\log\"
# ログファイル名を生成 (例: "Log_2023-10-02_12-30-00.txt")
$logFileName = "Log_" + (Get-Date -Format "yyyy-MM-dd_HH-mm-ss") + ".txt"
$logFilePath = Join-Path $logDirectory $logFileName
# .DS_Store および `._` から始まるファイルを再帰的に検索し、削除
Get-ChildItem -Path $currentDirectory -Recurse -Force -File | Where-Object {
$_.Name -eq ".DS_Store" -or $_.Name -like '._*'
} | ForEach-Object {
try {
# -LiteralPath を使用して、特殊文字を含むパスも正確に削除
Remove-Item -LiteralPath $_.FullName -Force -ErrorAction Stop
$message = "Deleted: " + $_.FullName
# コンソールに表示
Write-Host $message
# ログファイルに書き込み
Add-Content -Path $logFilePath -Value $message
} catch {
$errorMessage = "Failed to delete: " + $_.FullName
$errorDetail = $_.Exception.Message
# コンソールにエラー情報を表示
Write-Host $errorMessage -ForegroundColor Red
Write-Host $errorDetail -ForegroundColor Red
# ログファイルにエラー情報を書き込み
Add-Content -Path $logFilePath -Value $errorMessage
Add-Content -Path $logFilePath -Value $errorDetail
}
}
# 完了メッセージを表示
$completionMessage = "Deletion complete. Log File: $logFilePath"
Write-Host $completionMessage
Add-Content -Path $logFilePath -Value $completionMessage
}
New-Alias -Name removemacfiles -Value Set-removeMacFiles
保存場所
C:\Users\ユーザー名\OneDrive\scripts\profile\removeMacFiles.ps1
上記フォルダに格納した .ps1 ファイルを、自動で $profile
にインポートするよう設定してある。
※参考:PowerShell スクリプトを OneDrive の中で管理する
使い方
- PowerShell を開く
- 削除したいファイルがあるディレクトリに移動
removemacfiles
と入力して実行
- ログを確認
- 問題なさそうなファイル名でも失敗する場合がある
- そういうのは諦めて手動で削除する