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.
在我们的 Awestruct 网站中,我们有一个这样的目录:
/xsd /foo_1_0.xsd /foo_1_1.xsd /foo_1_2.xsd /foo_1_3.xsd ... /index.haml
这index.haml提供了一些关于如何使用foo*.xsd文件的信息。我index.haml也希望列出所有 xsd 文件,而不对它们进行硬编码。这可能吗?
index.haml
foo*.xsd
试试这个,它会将所有目录内容列为一个数组:
Dir.entries(".") #=> [".", "..", "file1", "file2"]
您可以.使用您的目录路径更改 。
.