How to write in an array inside a block?

If file_list did not exist before the block,
it will not exist after the block exits. Declarations inside blocks
are scoped to the block

I think if you look at the docs for Dir you'll find a method that will
give you the list of files withtout the need of the block
cheers

···

On Mar 26, 8:44 am, Zathras Draal <joon...@gmail.com> wrote:

Hello,

i want to write all files from my local directory in an array.

Something like (not working):

d = Dir.new("/Volumes/System/")
d.each {|x| file_list.push(x) }

How can i push single filenames through d.each into an array?

Thanks a lot in advance!
--
Posted viahttp://www.ruby-forum.com/.

Chris Hulan wrote:

Hello,

i want to write all files from my local directory in an array.

If file_list did not exist before the block,
it will not exist after the block exits. Declarations inside blocks
are scoped to the block

I think if you look at the docs for Dir you'll find a method that will
give you the list of files withtout the need of the block
cheers

Indeed.

···

On Mar 26, 8:44�am, Zathras Draal <joon...@gmail.com> wrote:

file_list = Dir.glob('*')

--
Posted via http://www.ruby-forum.com/\.