用power shell脚本写一个随机播放c:\music\目录下所有mp3歌曲
时间: 2023-03-30 09:00:52 浏览: 187
随机播放音乐
你好,以下是我的回答:
可以使用以下的 PowerShell 脚本来实现随机播放 c:\music\ 目录下所有 mp3 歌曲:
```powershell
$musicFolder = "c:\music\"
$mp3Files = Get-ChildItem $musicFolder -Filter *.mp3 -Recurse
$random = New-Object System.Random
do {
$randomIndex = $random.Next(, $mp3Files.Count)
$randomFile = $mp3Files[$randomIndex].FullName
Write-Host "Now playing: $randomFile"
Start-Process -FilePath $randomFile -Wait
} while ($true)
```
这个脚本会不断地随机播放 c:\music\ 目录下的 mp3 歌曲,直到手动停止脚本。
阅读全文