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.
ディレクトリから最初の N 個のファイルを取得するにはどうすればよいですか?
を介してファイルを反復しようとしました
Dir.glob(expression).do |f| i = i + 1 files.push(f) if (i == 5) then break # illegal end end
breakしかし、句の中に入れることthenは明らかに違法です。
break
then
ありがとう!
これは受け入れられますか:
MAX = 5 Dir.glob(expression)[0..MAX-1]