You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
460 B
20 lines
460 B
#nullable enable
|
|
#pragma warning disable CS1591
|
|
|
|
using System;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using Emby.Naming.Common;
|
|
|
|
namespace Emby.Naming.Audio
|
|
{
|
|
public static class AudioFileParser
|
|
{
|
|
public static bool IsAudioFile(string path, NamingOptions options)
|
|
{
|
|
var extension = Path.GetExtension(path);
|
|
return options.AudioFileExtensions.Contains(extension, StringComparer.OrdinalIgnoreCase);
|
|
}
|
|
}
|
|
}
|