Moving Files from a CGI Script

I'm looking to use a CGI script to move / rename a directory. I can't
find anything under Dir:: or File:: that looks appropriate and making a
shell command `in back-ticks` is out of the question as I'm using POST
data to determine which directory to move. What's the appropriate
mechanism for moving files in Ruby?

···

--
Posted via http://www.ruby-forum.com/.

ri FileUtils

-a

···

On Tue, 13 Jun 2006, Nathan Olberding wrote:

I'm looking to use a CGI script to move / rename a directory. I can't
find anything under Dir:: or File:: that looks appropriate and making a
shell command `in back-ticks` is out of the question as I'm using POST
data to determine which directory to move. What's the appropriate
mechanism for moving files in Ruby?

--
suffering increases your inner strength. also, the wishing for suffering
makes the suffering disappear.
- h.h. the 14th dali lama

Nathan Olberding wrote:

I'm looking to use a CGI script to move / rename a directory. I can't find anything under Dir:: or File:: that looks appropriate and making a shell command `in back-ticks` is out of the question as I'm using POST data to determine which directory to move. What's the appropriate mechanism for moving files in Ruby?

Will FileUtils::mv do what you want?

···

--
Alex

Alex Young wrote:

Will FileUtils::mv do what you want?

FileUtils looks perfect! Thanks. Every time I feel like I'm getting
somewhere with Ruby, I find out I've been missing some obvious bit the
whole time. I couldn't even find this on Google!

···

--
Posted via http://www.ruby-forum.com/\.

download the source. look in the lib/ dir. it's all there. alternatively
use

   http://ruby-doc.org/

it's all there too.

-a

···

On Tue, 13 Jun 2006, Nathan Olberding wrote:

Alex Young wrote:

Will FileUtils::mv do what you want?

FileUtils looks perfect! Thanks. Every time I feel like I'm getting
somewhere with Ruby, I find out I've been missing some obvious bit the
whole time. I couldn't even find this on Google!

--
suffering increases your inner strength. also, the wishing for suffering
makes the suffering disappear.
- h.h. the 14th dali lama

unknown wrote:

   http://ruby-doc.org/

it's all there too.

That's the first place I looked. I glossed over the modules listed below
File without thinking about it. There were a lot of them, and usually in
a situation like that, I end up going down a lot of dead-end roads. Just
goes to show what I get for being cynical!

···

--
Posted via http://www.ruby-forum.com/\.