Skript, mis otsib arvutist kõik .mp3 failid ja teeb nendest playlisti-Powershell

From ICO wiki
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

get-childitem -recurse | where {$_.extension -match "mp3"} | foreach-object {$_.Fullname} >> playlist.m3u