在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1.File 中参数的含义
2.File.new() 和 File.open() 的区别: 可以使用 File.open 方法创建一个新的 file 对象,并把该 file 对象赋值给文件。但是,File.open 和 File.new 方法之间有一点不同。不同点是 File.open 方法可与块关联,而 File.new 方法不能 3.读文件 File.open("/home/keno/code/haha.txt", "r") do |file| file.each_line{|line| puts line} end
4.写文件
File.open("/home/keno/code/hello.txt", "a+") do |file| file.puts "haha" file.puts "heihei" file.close() end
5.将一个文件中的内容添加到另一个文件中 File.open("/home/keno/code/haha.txt", "r") do |file| myFile=File.open("/home/keno/code/hello.txt", "a+") file.each_line { |line| myFile.puts line } myFile.close() file.close() end
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论