欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Ruby常用文件操作代码实例

程序员文章站 2022-11-15 19:19:52
#建立一个222.rb文件并且输入字符 file = file.open("222.rb","w+") file.puts "123\nwadwa\n12124...
#建立一个222.rb文件并且输入字符
file = file.open("222.rb","w+")
file.puts "123\nwadwa\n12124124\ndwdw"
file.close


#输出222.rb的内容
file.open("222.rb","r+") do |file|
while line = file.gets
puts line
end
end


#直接用io操作文件
io.foreach("222.rb") do |line|
puts line if line =~/abc/ #输出匹配到了'abc'的所在行
puts line if line !~/qwe/ #输出没有匹配到'qwe'的所在行
end



#输出文件的绝对路径
puts file.expand_path("222.rb")


#count chars from a file
file= file.new("222.rb")
w_count = 0
file.each_byte do |byte|
w_count += 1 if byte ==?1
end
puts "#{w_count}"


#create new file and write some words there
print "the file now is exist? --> " 
puts file.exist?("asd.txt")#判断文件是否存在

file= file.new("asd.txt","w")
print "the file now is exist? --> " 
puts file.exist?("asd.txt")

file.write("hehe\nhahah")


#io.stream operation
require 'stringio'
ios = stringio.new("abcdef\n abc \n 12345")
ios.seek(5) #把偏移指针移到5(e字母所在位置)
ios.puts("xyz3") #从5开始覆写原有数据
puts ios.tell #tell--returns the current offset (in bytes) of ios. 
puts ios.string
puts ios.string.dump #忽略\n的转义


#another example
require 'stringio'
ios = stringio.new("abcdef\nq9ert \n 12345")
ios.seek(3)
ios.ungetc(?w) #replace the char at index 3
puts "ptr = #{ios.tell}"
s1 = ios.gets #filte the "\n" 
s2 = ios.gets
puts s1
puts s2


#ruby打开文件并写入数据操作
txt = file.open("文件路径","w+")
txt.puts '要写入的文件内容'
txt.close
#从文件里读取数据
num = file.readlines("文件路径")[0].chomp
#打开文件的方法
system("notepad 文件路径")