Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8834319
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T08:59:08+00:00 2026-06-14T08:59:08+00:00

I have this Ruby script to convert my Word-documents to .txt format. It works

  • 0

I have this Ruby script to convert my Word-documents to .txt format.
It works fine and can convert multiple files after each other but now and then there is an error.
How do i let the script continue with the next file, skipping the file that gave the error ? Please no suggestions about using other techniques, i’m happy with this one.

require 'win32ole'

wdFormatDOSText = 4

word = WIN32OLE.new('Word.Application')
word.visible = false

begin
  ARGV.each do|file|
    myFile = word.documents.open(file)
    new_file = file.rpartition('.').first + ".txt"
    word.ActiveDocument.SaveAs new_file, wdFormatDOSText
    puts new_file
    word.activedocument.close(false) # no save dialog, just close it
  end
rescue WIN32OLERuntimeError => e
  puts e.message
  puts e.backtrace.inspect
  sleep 30
ensure
  word.quit
end
sleep 3
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T08:59:09+00:00Added an answer on June 14, 2026 at 8:59 am

    When iterating over a collection you can start a new begin...rescue...end block at the start of each iteration and call next within the rescue block:

    [ "puts 'hello'", "raise '!'" , "puts 'world'" ].each do |str|
      begin
        eval str
      rescue
        puts "caught an error, moving on"
        next
      end
    end
    
    # => hello
    # => caught an error, moving on
    # => world
    

    So in your case it could look something like this:

    ARGV.each do |file|
      begin
        # ...
      rescue WIN32OLERuntimeError => e
        puts e.message
        next
      end
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this ruby script that allows me to enter the name of a
Can anyone explain why this happens? mybox:$ ruby script/console Loading development environment (Rails 2.3.5)
I have this problem when I try to use script/generate: $ script/generate start /Users/gst/.gem/ruby/1.8/gems/hpricot-0.8.1/lib/fast_xs.bundle:
I have a ruby script that executes another ruby script via backticks. Like this:
I have this Ruby script (test.rb): print hello And I have this PHP script
I am pretty new with SQL and i have to translate this ruby script
I am using the Mongo Ruby driver and have this block of Ruby code
Possible Duplicate: Why do this Ruby object have two to_s and inspect methods that
I have a Ruby application, and here is my setup: I have this HAML
The default in Ruby on Rails is to have this set to false (in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.