navigate through folders

A

Andrei Caragea

Hello everyone,

ok... I have file (file.txt) which is written by a script. In this given
file there's a path (c:/path/path1/path2) and I have the following code
in another script:

File.open('file.txt').each_line do |p|

Dir::chdir("#{p}")
{
bunch of code
}

What I want to do after this is to go up to /path1 or /path and run some
more code; and this is where I'm stuck.

Can anyone point me in the right direction?

Thank you,
Andrei
 
B

Brian Candler

Andrei said:
File.open('file.txt').each_line do |p|

Dir::chdir("#{p}")
{
bunch of code
}

What I want to do after this is to go up to /path1 or /path and run some
more code; and this is where I'm stuck.

Can anyone point me in the right direction?

Note that p contains a newline at the end, which I'd expect would give
you an Errno::ENOENT.

But if the chdir is successful then you can walk up a level using "..".
Note that inside the block form of chdir this gives a warning.
(irb):8: warning: conflicting chdir during another chdir block
/etc
=> nil

Otherwise you could try:

Dir.chdir(p) { .. some code .. }
Dir.chdir("#{p}/..") { .. some more code .. }

or take a look at the Pathname library
=> "/etc"
 
B

Brian Candler

GianFranco said:
Dir::chdir("..\..") # returns to path

I'm afraid this won't:

irb(main):020:0> "..\.."
=> "...."

You need "../.." (preferred, even under Windows), or "..\\..", or
'..\..'

irb(main):021:0> "..\\.."
=> "..\\.."
irb(main):022:0> "..\\..".size
=> 5
 
A

Andrei Caragea

Thank you very much guys, this works great.

@Brian
You were right about the error, though for me it returned
(Errno::EINVAL) which I fixed with:

p.delete! "\n"

Best Regards,
Andrei
 
J

Jesús Gabriel y Galán

Thank you very much guys, this works great.

@Brian
You were right about the error, though for me it returned
(Errno::EINVAL) which I fixed with:

p.delete! "\n"

p.chomp!

Jesus.
 

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

Forum statistics

Threads
473,776
Messages
2,569,602
Members
45,184
Latest member
ZNOChrista

Latest Threads

Top