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.
フォルダーがあり、すべてのファイル名とファイル拡張子を取得しようとしています。どうすればこれを行うことができますか? これを行うのに役立つ例が見つかりませんでした。誰かが私を助けてくれれば、それを探すのにもう疲れています。
ありがとう
Dir.glob("*") # => ["test.rb", "a.txt", ..... ] # or find all files recursively Dir.glob("./**/*")
あなたはphp関数を使うことができますscandir('path')
scandir('path')