I'm trying to move an entire .jar file to a different directory(the directory the program is in). I'm using this code but when I run the program, the new jar appears but has no data. 0 KB.

require 'fileutils'
FileUtils.mv("path", "filename.jar")

Is there a different method I should be using? Is there an explicit copy method I can use?

link|improve this question
1  
Is "path" the full path to the source JAR file? Any exceptions? – mu is too short Dec 24 '11 at 1:45
path is the correct path. I even moved the jar file into the directory along with the program and it still won't work rename the file. – TheBinaryhood Dec 25 '11 at 1:45
"path" or path? What does FileUtils.cp do? – mu is too short Dec 25 '11 at 3:52
"path". My bad. FileUtils.cp does the same thing with 0 KB. – TheBinaryhood Dec 25 '11 at 18:46
Does sudo ruby -rfileutils "FileUtils.mv('/path/to/filefilename.jar', 'filename.jar')" work? – DNNX Dec 26 '11 at 10:08
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.