Module: FileUtils
- Defined in:
- lib/extensions/jruby.rb
Class Method Summary collapse
-
.cp(src, dst, opt = nil) ⇒ Object
マルチバイト文字を含むパスを認識出来ないため.
Class Method Details
.cp(src, dst, opt = nil) ⇒ Object
マルチバイト文字を含むパスを認識出来ないため
11 12 13 14 15 |
# File 'lib/extensions/jruby.rb', line 11 def self.cp(src, dst, opt = nil) open(src, "rb") do |fp| File.binwrite(dst, fp.read) end end |