Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to move a file with Ruby. How do I do that?

share|improve this question

6 Answers

up vote 93 down vote accepted

You can use FileUtils to do this.

#!/usr/bin/env ruby

require 'fileutils'

FileUtils.mv('/tmp/your_file', '/opt/new/location/your_file')

Remember; if you are moving across partitions, "mv" will copy the file to new destination and unlink the source path.

share|improve this answer
I forgot to add that you can not move across partitions. Thanks. – Željko Filipin Dec 31 '08 at 15:50
3  
Actually mv does the copy for you. "Moves file(s) src to dest. If file and dest exist on the different disk partition, the file is copied instead." ... ruby-doc.org/core/classes/FileUtils.html#M004330 – Darkerstar May 16 '10 at 7:23
Darkerstar: Thank you. I edited the reply. – Berk D. Demir May 25 '10 at 7:33
can you confirm if the file is deleted after being copied from a different partition? – knoopx Aug 18 '10 at 12:54

An old question, i'm surprised no one answered this simple solution. You don't need fileutils or a systemcall, just rename the file to the new location.

File.rename source_path, target_path

Happy coding

share|improve this answer
1  
File rename won't work across partitions, and throws the error "Invalid cross-device link". FileUtils is a better choice in those cases, but for a simple move in the same partition, rename works. – d3vkit Jan 25 at 4:06
@d3vkit, thanks vor the remark but in windows this works across drives, local and remote, eg <code>File.rename 'c:/test/test.txt', 'e:/test.txt'</code>, what OS do you use ? – peter Jan 25 at 10:23
Ah, I had trouble specifically in Ubuntu using some Windows networked shares. I also ended up having trouble with FileUtils.mv, which would move the file and then say it didn't have permission to delete the old file. I ended up using FileUtils.cp and then File.delete to get rid of the old file. – d3vkit Jan 25 at 11:27

FileUtils.move

require "FileUtils"
FileUtils.move 'stuff.rb', '/notexist/lib/ruby'
share|improve this answer
+1 Note that .move is an alias of .mv so you should be able to do FileUtils.mv too. – Tim K. Dec 31 '08 at 15:45
Thanks, I just like .move more that .mv. :) – Željko Filipin Dec 31 '08 at 15:49
1  
I don't. mv makes me feel like I'm in my beloved console ;) – Erik Escobedo Sep 3 '10 at 16:45
4  
And the nice thing about Ruby is that it has both move and mvso one can pick either one. :) – Željko Filipin Sep 6 '10 at 9:00

Use the module 'fileutils' and use FileUtils.mv:

http://www.ruby-doc.org/stdlib-2.0/libdoc/fileutils/rdoc/FileUtils.html#method-c-mv

share|improve this answer
Down-vote as link does not seem to exist (any more) – Carsten Mar 4 '11 at 4:02
4  
It most likely existed when he posted it :) Upvote! – steve Jun 21 '11 at 10:22

So I did something like this:

FileUtils.mv 'public/assets/sass/', 'public/css/', :verbose => true

but the problem I have with that is that every time I run my compiler (if the folder css) already exists it will nest the folder "sass" into "css" = "css/sass"

Also what about moving ANY file inside a directory without listing those files?

share|improve this answer

You could also use a system call:

system('mv', source_filename, target_filename)
share|improve this answer
Don't do this.This is bad because this doesn't escape filenames. – glebtv Feb 22 '12 at 4:28
@Glebushka Different tasks - different approaches. – Ulitiy Mar 13 '12 at 22:29
@Glebushka I updated the answer to escape filenames. However, I still recommend FileUtils#move because it's system-independent whereas system('mv', ... ) I don't think will work on Windows systems. – MattDiPasquale Jul 18 '12 at 17:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.