How to use the Dir class, search for a sub directroy

H

Harry Nash

Good day, I am learning Ruby,and doing some experaments.
I have a bit of code that searches the header of MP3 files
in a folder to get file 1 artist name. This is a variable artist.
Now I try to search a diferent directory and see if
a sub directory has the same name. So letts say the artist
is Abba and I do have a sub folder in e:\music with ABBA
how do I use Dir class to evaluate if Abba is found. I tried
changing Abba to ABBA and still I do not get expected results.

Artist = ABBA
Dir.chdir("e:/music")
Dir["#{artist}"]

I tried a number of things here, I need a positive or negitave
return; and, how to get the return value.

OH
Is there a way to mark a post as answered?
 
B

badboy

Harry said:
Good day, I am learning Ruby,and doing some experaments.
I have a bit of code that searches the header of MP3 files
in a folder to get file 1 artist name. This is a variable artist.
Now I try to search a diferent directory and see if
a sub directory has the same name. So letts say the artist
is Abba and I do have a sub folder in e:\music with ABBA
how do I use Dir class to evaluate if Abba is found. I tried
changing Abba to ABBA and still I do not get expected results.

Artist = ABBA
Dir.chdir("e:/music")
Dir["#{artist}"]

I tried a number of things here, I need a positive or negitave
return; and, how to get the return value.

OH
Is there a way to mark a post as answered?
try this:
artist = 'ABBA'
Dir.glob("*#{artist}*", File::FNM_CASEFOLD)
the * means anything before and after your search string, FNM_CASEFOLD
=> case insensitive
this could be easily found out by reading the rdoc at:
http://www.ruby-doc.org/core/classes/Dir.html#M002347
http://www.ruby-doc.org/core/classes/File.html#M002603
 
H

Harry Nash

Thanks for your reply, I had read the doc but could not get it to work
This is what I wound up doing and it does work.

Dir.chdir("e:/foldertest")
artist = 'Abba'
artist_check = Dir.glob("#{artist}", File::FNM_CASEFOLD)
puts artist_check
if "#{artist}" != "#{artist_check}"
puts "no match found"
else puts "found match"
end




Harry said:
Dir.chdir("e:/music")
Dir["#{artist}"]

I tried a number of things here, I need a positive or negitave
return; and, how to get the return value.

OH
Is there a way to mark a post as answered?
try this:
artist = 'ABBA'
Dir.glob("*#{artist}*", File::FNM_CASEFOLD)
the * means anything before and after your search string, FNM_CASEFOLD
=> case insensitive
this could be easily found out by reading the rdoc at:
http://www.ruby-doc.org/core/classes/Dir.html#M002347
http://www.ruby-doc.org/core/classes/File.html#M002603
 
B

badboy

Harry said:
Thanks for your reply, I had read the doc but could not get it to work
This is what I wound up doing and it does work.

Dir.chdir("e:/foldertest")
artist = 'Abba'
artist_check = Dir.glob("#{artist}", File::FNM_CASEFOLD)
puts artist_check
if "#{artist}" != "#{artist_check}"
puts "no match found"
else puts "found match"
end
Dir.glob returns an array, not a string, so your "if artist !=
artist_check" will fail.
also, you won't find folders/files like "abba album" with your search,
if you want this add the star ("*")
artist is already a string, so no need for "#{...}", just use artist
and at last:
if you changed the if-construct it will fail, if Dir.glob found "abba",
because your "artist" is "Abba" ;)
 
H

Harry Nash

I removed the * as I only want exact match. There are only artist
folders such as ABBA acdc they do not have additional folders.
I do agree with you comment below; strange though, if I change
the folder ABBA to FBBA my code returns no match found, then
I change the name back to ABBA, I get found match. Sooo it does work,
yet if it's wrong it will then break some time. I think a different
Dir class command is needed not glob, I am trying only for
a ture or false return not the aray.

Again thanks for your input; and on Sunday too!
 
L

lasitha

Artist = ABBA
Dir.chdir("e:/music")
Dir["#{artist}"]

I tried a number of things here, I need a positive or negitave
return; and, how to get the return value.

If all you need is to know whether the directory exists, then
File.exist?('ABBA')
will suffice (although it is case-sensitive).

Solidarity,
lasitha
 
H

Harry Nash

Yes this too works, it is simple too.
Thanks four your help!



Artist = ABBA
Dir.chdir("e:/music")
Dir["#{artist}"]

I tried a number of things here, I need a positive or negitave
return; and, how to get the return value.

If all you need is to know whether the directory exists, then
File.exist?('ABBA')
will suffice (although it is case-sensitive).

Solidarity,
lasitha
 

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,755
Messages
2,569,536
Members
45,013
Latest member
KatriceSwa

Latest Threads

Top