How to search a folder and all of its subfolders for files of a certain type

前端 未结 5 710
無奈伤痛
無奈伤痛 2020-11-29 22:19

I am trying to search for all files of a given type in a given folder and copy them to a new folder.

I need to specify a root folder and search through that folder a

5条回答
  •  醉梦人生
    2020-11-29 22:46

    Another fast way of doing this is delegating the task to the shell command "find" and splitting the output:

    pdf_file_paths = `find #{dir} -name "*.pdf"`.split("\n")
    

    Does not work on Windows.

提交回复
热议问题