Skip to content

Instantly share code, notes, and snippets.

@CannoHarito
Created June 14, 2019 02:22
Show Gist options
  • Save CannoHarito/d0ef83c5074e77129413c54bf0002796 to your computer and use it in GitHub Desktop.
Save CannoHarito/d0ef83c5074e77129413c54bf0002796 to your computer and use it in GitHub Desktop.
スマートプレイリストはその時点でのトラックがコピーできる
$iTunes = New-Object -Com "iTunes.Application"
$iTunes.LibrarySource.Playlists|%{$_.Name}
$list=$iTunes.LibrarySource.Playlists.ItemByName('AgeAge').Tracks
$list|%{ cp $_.Location ($_.Name+(get-item $_.Location).Extension)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment