将 M3U 文件位置解析为完全限定的路径

发布于 2024-11-16 14:45:22 字数 409 浏览 3 评论 0原文

我想将 M3U 播放列表中的文件位置信息解析为完全限定的路径。 M3U 文件中可能的格式似乎是:

c:\mydir\songs\tune.mp3

\songs\tune.mp3

..\songs\tune.mp3

对于第一个示例,请不要管它。对于第二个添加播放列表所在的目录,因此它将成为 c:\playlists\songs\tune.mp3,对于第三个情况也是如此,因此它也将成为:c:\playlists\songs\tune.mp3。

我在 VS2008 下使用 vb,但找不到识别 M3U 文件中每种潜在位置格式的方法。 System.IO.Path 没有提供我能找到的解决方案。我广泛搜索了诸如“将相对路径转换为绝对路径”之类的术语,但没有运气。

任何建议表示赞赏。

谢谢。

I would like to parse the file location information in an M3U playlist into fully qualified paths. The possible formats in M3U files seem to be:

c:\mydir\songs\tune.mp3

\songs\tune.mp3

..\songs\tune.mp3

For the first example, just leave it alone. For the second add the directory that the playlist resides in so it would become c:\playlists\songs\tune.mp3 and the same for the third case so it would also become: c:\playlists\songs\tune.mp3.

I'm using vb under VS2008 and I can't find a way to recognise each of the potential location formats in the M3U file. System.IO.Path offers no solution that I can find. I've searched extensively for terms like "convert relative path to absolute" but no luck.

Any advice appreciated.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

筱果果 2024-11-23 14:45:22

编写一个批处理脚本,仅逐行读取 m3u 文件,然后解析每一行以查找“:”和“..”,并根据需要编辑字符串。然后您可以将“转换后的”字符串写入另一个文件......

Write a batch script that just reads the m3u file line by line, and then just parse each line looking for ":" , and for "..", and edit the string as needed. You can then just write the "converted" strings to another file...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文