Help on Directory Iteration

N

Newb Newb

Hi People i have never done file or Directory manipulations before.
now in my form i have given date field and search button.
if the user enters date and clicks the search button,accoding to the
date entered it has to search for the folder in the ChatHistory folder
for example user enters date like 2009-01-23 means it has to search for
the folder which named 2009-01-23.
if the foder exists again it has to be iterated when i do this i get
error.
folder structure would be ChatHistory has one folder like 2009-01-23
has two folder namely test and user these two folders contain 2 files
each.
My code starts here
if params[:first_name].blank? and params[:second_name].blank? and
!params[:e_date][0].blank? and params[:e_date][1].blank?
puts "frtst date is not blank others are blank"
Dir.foreach("ChatHistory") do |f|
if f == params[:e_date][0]
puts "there:"
Dir.foreach(f) do |p|
puts p
end
end
end



Pls Kindly help me up
 
R

Robert Klemme

Hi People i have never done file or Directory manipulations before.
now in my form i have given date field and search button.
if the user enters date and clicks the search button,accoding to the
date entered it has to search for the folder in the ChatHistory folder
for example user enters date like 2009-01-23 means it has to search for
the folder which named 2009-01-23.
if the foder exists again it has to be iterated when i do this i get
error.
folder structure would be ChatHistory has one folder like 2009-01-23
has two folder namely test and user these two folders contain 2 files
each.
My code starts here
if params[:first_name].blank? and params[:second_name].blank? and
!params[:e_date][0].blank? and params[:e_date][1].blank?
puts "frtst date is not blank others are blank"
Dir.foreach("ChatHistory") do |f|
if f == params[:e_date][0]
puts "there:"
Dir.foreach(f) do |p|

f does not contain the full path here so you need something like:

Dir.foreach(File.join("ChatHistory",f)) do |p|

Btw, it's often helpful to put a few printing statements here and there
during debugging. :)
puts p
end
end
end

Kind regards

robert
 
P

Peña, Botp

RnJvbTogTmV3YiBOZXdiIFttYWlsdG86cmV2YXRoeS5wQGFuZ2xlcml0ZWNoLmNvbV0gDQojICAg
RGlyLmZvcmVhY2goIkNoYXRIaXN0b3J5IikgZG8gfGZ8DQojICAgICBpZiBmID09IHBhcmFtc1s6
ZV9kYXRlXVswXQ0KIyAgICAgICAgcHV0cyAidGhlcmU6Ig0KIyAgICAgICAgRGlyLmZvcmVhY2go
ZikgZG8gfHB8DQojICAgICAgICBwdXRzIHANCiMgICAgICAgIGVuZA0KIyAgICAgZW5kDQojICAg
ZW5kDQoNCmhtbSwgZm9sZGVyL2ZpbG5hbWVzIGFyZSB1bmlxIGZvciBlYWNoIGxldmVsLCBzbyB5
b3Ugc2hvdWxkICpub3QgbmVlZCB0byBpdGVyYXRlIHRoYXQgbm8/IHRoYXQgaXMsDQoNCiAgRGly
LmZvcmVhY2goJ0NoYXRIaXN0b3J5LycrcGFyYW1zWzplX2RhdGVdWzBdKSBkbyB8cGF0aHwNCiAg
ICBwdXRzIHBhdGggdW5sZXNzICV3KC4gLi4pLmluY2x1ZGU/IHBhdGgNCiAgZW5kDQoNCmFuZCBp
IHdvdWxkIGFsc28gcmVmcmFpbiB1c2luZyBwIGFzIGEgdmFyIG5hbWUgOykNCg0K
 
N

Newb Newb

if params[:first_name].blank? and params[:second_name].blank? and
!params[:e_date][0].blank? and params[:e_date][1].blank?
puts "frtst date is not blank others are blank"
Dir.foreach("ChatHistory") do |folder_name|
if folder_name == params[:e_date][0]
puts "there:"
puts folder_name
@sub_folder_one = Array.new
Dir.foreach(File.join("ChatHistory",folder_name)) do
|sub_folder_name|
@sub_folder_one << sub_folder_name
end
end
end
end
@sub_folder_one array has two folder names
one is =>
(e-mail address removed)[email protected]
second is => testing
14;23;[email protected]
in this i don't need the folder name which has date in
that.
that i don't need testing
14;23;[email protected]
but i need
(e-mail address removed)[email protected]
how can i do that help me up pls
 
B

Brian Candler

Newb said:
folder structure would be ChatHistory has one folder like 2009-01-23
has two folder namely test and user these two folders contain 2 files
each.

You can get a list of all files and subdirectories under a subdirectory
like this:

Dir["ChatHistory/2009-01-23/**/*"]

Note: if you are inserting a value from a parameter, you should sanitise
it first. At least remove /../, although it's safest to allow only valid
values like this:

date = params[:date]
raise "Bad date format" unless date =~ /\A\d\d\d\d-\d\d-\d\d\z/
Dir["ChatHistory/#{date}/**/*"].each do |f|
...
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
474,431
Messages
2,571,679
Members
48,796
Latest member
Greg L.

Latest Threads

Top