class MarkdownExec::SavedFilesMatcher

def self.list_all(folder, glob)

Lists all files in the specified folder that match the given glob pattern
def self.list_all(folder, glob)
  Dir.glob(File.join(folder, glob))
end