Created
July 19, 2022 05:03
-
-
Save Fabaderheld/77fd15969302c65f35c407cdf6368113 to your computer and use it in GitHub Desktop.
Generate .m3u frrom .cue files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-ChildItem | ForEach-Object { (Get-ChildItem $_.Fullname -Recurse | Where-Object { $_.Name -like "*.cue" } | Select-Object name).Name | Out-File "$($_.FullName)\$($_.Name).m3u" } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment