I want to move a file with Ruby. How do I do that?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can use FileUtils to do this.
Remember; if you are moving across partitions, "mv" will copy the file to new destination and unlink the source path. |
|||||||||||
|
|
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.
Happy coding |
|||||||||
|
|
|||||||||||||
|
|
Use the module 'fileutils' and use FileUtils.mv: http://www.ruby-doc.org/stdlib-2.0/libdoc/fileutils/rdoc/FileUtils.html#method-c-mv |
||||
|
So I did something like this:
but the problem I have with that is that every time I run my compiler (if the folder Also what about moving ANY file inside a directory without listing those files? |
|||
|
|
|
You could also use a system call:
|
|||||||
|
