From: djberg96@... (Daniel Berger) Date: 2004-10-29T08:53:59+09:00 Subject: Re: Execution and dos path woes doodpants@mailinator.com (Karl von Laudermann) wrote in message news:<729e3289.0410280927.4ccb6f20@posting.google.com>... > > - Find a way, either via a Ruby library method or a dos command, to > convert a long path into a short path, so that I don't have to use > quotes. > > Any thoughts? require "win32/file" short_path = File.short_path(long_path) win32-file is available on the RAA. Regards, Dan