Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何获取一个文件夹下的所有文件名?并foreach所有文件名?使用 gremlin 命令
Gremlin 是一种图遍历语言。它没有用于读取文件系统的特定命令。你只需使用你的编程语言的特性来做到这一点。使用 Groovy,您可以这样做:
gremlin> new File("data").eachFile(groovy.io.FileType.FILES) { println it.name } tinkerpop-modern.json tinkerpop-classic.kryo ... script-input.groovy