如何读取/写入包含正斜杠(/)的文件名的文件?
这就是我要做的 -
filename = "A/B/C"
full_path = "#{Rails.root}/public/barcodes/#{filename}.png"
File.open(full_path, 'w') { |f| f.write @barcode_png.to_png(:margin => 3, :xdim => 2,:ydim => 2, :height => 100) }
每次执行此操作时,Ruby都会尝试按名称A, B and C
查找文件夹,而不是编写文件"A/B/C"
有关如何使这项工作的任何想法?
谢谢!