Creating directory structures

C

Ch Ba

I'm having a bit of a difficult time coming up with a solid way handle
this problem. I'll explain:

I have an array containing a list of file paths like the following.

["foo/bar/blah.rb","foo/bar/stuff.rb","foo/bar/example/thing.rb,"foo/ham/example"]

I need to come up with a way to create a directory structure using the
paths supplied in the array. The "base" directory is unimportant, but
the structure of the rest is. Using the above as an example, I would
need to create the following directories.

foo/bar
foo/bar/example
foo/ham
foo/ham/example

I also need to check whether or not the directory exists so that it
makes no attempt to create a directory that is already there. Any ideas?
 
M

Matthew Moss

I'm having a bit of a difficult time coming up with a solid way handle
this problem. I'll explain:

I have an array containing a list of file paths like the following.

["foo/bar/blah.rb","foo/bar/stuff.rb","foo/bar/example/thing.rb,"foo/
ham/example"]

I need to come up with a way to create a directory structure using the
paths supplied in the array. The "base" directory is unimportant, but
the structure of the rest is. Using the above as an example, I would
need to create the following directories.

foo/bar
foo/bar/example
foo/ham
foo/ham/example

I also need to check whether or not the directory exists so that it
makes no attempt to create a directory that is already there. Any
ideas?



FileUtils.makedirs( files.map{ |f| f.dirname }.uniq.reject{ |d|
File::exist?(d) } )
 
C

Ch Ba

Matthew said:
FileUtils.makedirs( files.map{ |f| f.dirname }.uniq.reject{ |d|
File::exist?(d) } )

I've got to be honest, I was looking for more of a
discussion/explanation than code itself. I greatly appreciate your
prompt response and you putting it together but my application is a bit
more advanced than I led on and what I really need is to better
understand how to do it =)
 
C

Ch Ba

Ch said:
I'm having a bit of a difficult time coming up with a solid way handle
this problem. I'll explain:

I have an array containing a list of file paths like the following.

["foo/bar/blah.rb","foo/bar/stuff.rb","foo/bar/example/thing.rb,"foo/ham/example"]

I need to come up with a way to create a directory structure using the
paths supplied in the array. The "base" directory is unimportant, but
the structure of the rest is. Using the above as an example, I would
need to create the following directories.

foo/bar
foo/bar/example
foo/ham
foo/ham/example

I also need to check whether or not the directory exists so that it
makes no attempt to create a directory that is already there. Any ideas?


Maybe the whole array idea is just bad altogether. I'll start from the
top and explain what I'm trying to do.

Starting with a base directory, we will say "foo", I need to iterate
through all subdirectories, gathering only files that contain certain
characters in their name. That part was easy, and it is returning the
array like I mentioned previously. Should I be doing it differently?
After gathering the files, a new file is created for each file
gathered, and placed in a seperate location, with a new base directory.
The structure of the subdirectories must be maintained however. I'm
having an immensly difficult time getting this to work. I've tried
several different options, what do you guys think the best way to handle
this task would be?
 
M

Matthew Moss

Starting with a base directory, we will say "foo", I need to iterate
through all subdirectories, gathering only files that contain certain
characters in their name. That part was easy, and it is returning the
array like I mentioned previously. Should I be doing it differently?

That seems like a quite reasonable way to do it.

After gathering the files, a new file is created for each file
gathered, and placed in a seperate location, with a new base
directory.
The structure of the subdirectories must be maintained however. I'm
having an immensly difficult time getting this to work. I've tried
several different options, what do you guys think the best way to
handle
this task would be?

Once you have an array of the source files, you should be able to
create a list of the potential new files by replacing part of the
source paths (using String#gsub).

After that, enumerate your files, creating the directory (using
File.dirname) and then creating the file.
 
C

Ch Ba

Once you have an array of the source files, you should be able to
create a list of the potential new files by replacing part of the
source paths (using String#gsub).

After that, enumerate your files, creating the directory (using
File.dirname) and then creating the file.

Excellent. That's what I'm looking for, I will follow up with my
results.
 
R

Robert Klemme

Excellent. That's what I'm looking for, I will follow up with my
results.

There is another option that does not need gsub: use Dir[] with a
directory wildcard and then just prepend source and target dir. Also,
you can use FileUtils.mkdir_p which handles intermediate as well as
existing directories gracefully.

Cheers

robert

# ============= SPOILER BELOW =======================
















































require 'fileutils'

Dir.chdir source_dir do
Dir['**/*special*characters*']
end.each do |file|
from = File.join(source_dir, file)

if must_transform? from
to = File.join(target_dir, file)
FileUtils.mkdir_p(File.dirname(to))
transform(from, to)
end
end
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top