在Clojure中的目录中列出文件

在Clojure中的目录中列出文件

本文介绍了在Clojure中的目录中列出文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在Clojure中的特定目录中的所有文件中创建一个列表?

How can I create a list out of all of the files in a specific directory in Clojure? Do I have to resort to calling Java or can Clojure handle this natively?

推荐答案

使用函数。

Use file-seq function.

使用示例:

(def directory (clojure.java.io/file "/path/to/directory"))
(def files (file-seq directory))
(take 10 files)

这篇关于在Clojure中的目录中列出文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 11:36