For example @source = e:/test_dir
If that test_dir has 10 files.if some error occurs while copying a 4th
file,Again copying of the file should not continue from 1st file to 10th
file again.
If that 4 th file not copied due to any errors it should continue
copying from 5 th file and so on…
I think using arrray index might do the trick.
Any ideas
Thanks
If that test_dir has 10 files.if some error occurs while copying a 4th
file,Again copying of the file should not continue from 1st file to 10th
file again.
  If that 4 th file not copied due to any errors it should continue
copying from 5 th file and so on…
I think using arrray index might do the trick.
Any ideas
Thanks
my_dir.each do |f|
begin
FileUtils.copy(f,@@dest)
rescue
# some error handling
end
end
Or
my_dir.each do |f|
FileUtils.copy(f,@@dest) rescue nil
end
For example @source = e:/test_dir
If that test_dir has 10 files.if some error occurs while copying a 4th
file,Again copying of the file should not continue from 1st file to 10th
file again.
If that 4 th file not copied due to any errors it should continue
copying from 5 th file and so on…
I think using arrray index might do the trick.
Any ideas
Thanks