gpt4 book ai didi

ruby-on-rails - Ruby 替换整个文件而不是附加到它

转载 作者:数据小太阳 更新时间:2023-10-29 08:23:11 25 4
gpt4 key购买 nike

以下 ruby​​ 代码正在替换文件的全部内容。 我怎样才能只附加到文件的末尾并保持其现有内容不变?

File.open("db/seeds.rb", "w") do |f|
f.write "Blog::Engine.load_seed"
end

最佳答案

使用追加模式("a"):

File.open("db/seeds.rb", "a") do |f|

Here is a link to the docs, on the different modes you can specify when opening a file.

关于ruby-on-rails - Ruby 替换整个文件而不是附加到它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21070912/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com