Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 IT 学校有一个视频游戏小项目,但我遇到了一个问题:对于这个项目,我想制作一个定制的音乐播放器(播放器只需将他们的音乐添加到特定的文件夹中)并且存在问题:我知道如何在游戏中添加一首歌曲,但如果我想要这个播放器,我需要的不止这些。
例如,有什么方法可以“扫描”文件夹并将音乐添加到列表中?
谢谢 !
using System.IO; string[] filePaths = Directory.GetFiles(@"c:\MyDir\");
或者
string[] filePaths = Directory.GetFiles(@"c:\MyDir\", "*.mp3");
对于特定的扩展。然后从数组中随机选择。