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?
"path"the full path to the source JAR file? Any exceptions? – mu is too short Dec 24 '11 at 1:45pathis 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"orpath? What doesFileUtils.cpdo? – mu is too short Dec 25 '11 at 3:52"path". My bad.FileUtils.cpdoes the same thing with 0 KB. – TheBinaryhood Dec 25 '11 at 18:46sudo ruby -rfileutils "FileUtils.mv('/path/to/filefilename.jar', 'filename.jar')"work? – DNNX Dec 26 '11 at 10:08