From: Pete Date: 2005-11-22T06:56:45+09:00 Subject: Re: mkdirs function? piece of cake :-) def mkdirs(*dirs) dirs.each do |dir| Dir.mkdir(dir) end end mkdirs "dir1", "dir2" , "dir3" On Mon, 21 Nov 2005 22:52:24 +0100, Daniel Sch�le wrote: > Hello all, > > is there a function to make multiple directories > like os.makedirs in Python? > > I tried Dir.singleton_methods but nothing that > would fit. > if not can it be added to Ruby? > > Regards, Daniel > >