我想写一个方法来做到这一点
def search_for_filenames(dir, name)
# goes to the directory and returns a list of files that match
# the given name, regardless of extension
end
因此,例如,如果名称是test
,并且我的目录包含以下内容
test.png
test.txt
something_else.dat
该方法将返回一个包含前两个文件名的数组
我该如何写这个方法?