我正在将目录(在 gem 内)中的gem
文件复制/template
到控制台的当前目录中。
这是它的样子:
require "fileutils"
# Get the console's current directory
destination_dir = Dir.pwd
# Home directory of my gem, looks like C:/Ruby193/lib/ruby/gems/1.9.1/gems/my_gem-1.0.0
home_dir = File.expand_path( "..", File.dirname(__FILE__) )
# Template directory, looks like C:/Ruby193/lib/ruby/gems/1.9.1/gems/my_gem-1.0.0/template
template_dir = File.join( home_dir, "template" )
FileUtils.copy_file( template_dir, destination_dir )
我得到了这个错误:
C:/Ruby193/lib/ruby/1.9.1/fileutils.rb:1370:in `initialize': Permission denied -
C:/Ruby193/lib/ruby/gems/1.9.1/gems/my_gem-1.0.0/template (Errno::
EACCES)
我已经通过运行检查了该目录是否存在Dir[template_dir]
。
有什么解决办法吗?谢谢
更新以回答以下评论
@Babai
我之前添加了这一行copy_file
,但仍然无法正常工作。我做对了吗?
FileUtils.chmod(0777, template_dir)
@mudasobwa
这是代码的结果
# puts "#{template_dir} \n #{destination_dir}"
C:/Ruby193/lib/ruby/gems/1.9.1/gems/my_gem-1.0.0/template
C:/Users/myname/Documents/Test