为您制作了一个原型,它不安全且不进行错误检查,但它可以工作。
代码:
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <errno.h>
#include <vector>
#include <string>
#include <iostream>
int scan(std::string dir, std::vector<std::string> &files)
{
DIR* dr = opendir(dir.c_str());
struct dirent *drp;
while ((drp = readdir(dr)) != NULL)
{
struct stat s;
stat((dir + "/" + std::string(drp->d_name)).c_str(), &s);
if (s.st_mode & S_IFREG)
{
files.push_back(std::string(drp->d_name));
}
}
closedir(dr);
return 0;
}
int main()
{
std::string dir = ".", cmd = "vlc";
std::vector<std::string> files, vfiles;
scan(dir, files);
for (unsigned int i = 0; i < files.size(); i++)
{
if (files[i].substr(files[i].find(".")) == ".mp3")
{
vfiles.push_back(std::string(files[i]));
}
}
for (unsigned int i = 0; i < vfiles.size(); i++)
{
cmd += " " + dir + "/" + vfiles[i];
}
printf("%s\n", cmd.c_str());
system(cmd.c_str());
return 0;
}
输出:
vlc ./test.mp3 ./test2.mp3
它的作用是:它默认列出指定文件夹中的所有文件"."
,它检查文件实际上是文件而不是文件夹,然后列出所有".mp3"
以vlc file1.mp3 file2.mp3 file4.mp3
. VLC 将按顺序播放所有列出的文件。
在 Windows 8 上使用 ( VLC media player 2.0.6 Twoflower
) 将其添加到Path
.