public MemeDatabase(IWebHostEnvironment env) { _env = env; Images = Directory.GetFiles(env.GetMemesPath(), "*.jpg").Select(Path.GetFileName).ToList(); }
public static string GetMemePath(this IWebHostEnvironment env, string name) => Path.Combine(env.GetMemesPath(), name);