• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

一步一步学Ruby(二十):文件使用

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
一、新建文件
f=File.new(File.join("C:","Test.txt"), "w+")
f.puts("I am Jack")
f.puts("Hello World")

文件模式

"r" :Read-only. Starts at beginning of file (default mode).

"r+" :Read-write. Starts at beginning of file.

"w" :Write-only. Truncates existing file to zero length or creates a new file for writing.

"w+" :Read-write. Truncates existing file to zero length or creates a new file for reading and writing.

"a" :Write-only. Starts at end of file if file exists; otherwise, creates a new file for writing.

"a+" :Read-write. Starts at end of file if file exists; otherwise, creates a new file for reading and writing.

"b" :(DOS/Windows only.) Binary file mode. May appear with any of the key letters listed above

二、读取文件

file=File.open(File.join("C:","Test.txt"),"r")
file.each { |line| print "#{file.lineno}.", line }
file.close

输出:

1.白日依山尽
2.黄河入海流
3.欲穷千里目
4.更上一层楼

三、新建、删除、重命名文件

File.new( "books.txt", "w" )
File.rename( "books.txt", "chaps.txt" )
File.delete( "chaps.txt" )

三、目录操作

创建目录
Dir.mkdir("c:/testdir")

#删除目录
Dir.rmdir("c:/testdir")

#查询目录里的文件
p Dir.entries(File.join("C:","Ruby")).join(' ')

#遍历目录
Dir.entries(File.join("C:","Ruby")).each {
      |e| puts e
}

输出:

"C:/studyruby"
"c:/ruby"

查看目录信息

d:\Study\rubysample>irb
irb(main):001:0> dir=Dir.open( File.join("C:","Ruby") )
=> #
irb(main):002:0> dir.path
=> "C:/Ruby"
irb(main):003:0> dir.tell
=> 0
irb(main):004:0> dir.read
=> "."
irb(main):005:0> dir.rewind
=> #
irb(main):006:0> dir.each{|e| puts e}
.
..
bin
ChangeLog.txt
doc
lib
LICENSE.txt
man
MANIFEST
misc
README.1st
ReleaseNotes.txt
ruby.ico
rubyopt.del
rubyw.ico
samples
scite
share
src
uninstall.exe
=> #
irb(main):007:0>

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
ruby中容易犯的错误发布时间:2022-07-14
下一篇:
Ruby的虚拟机Rubinius 1.1发布发布时间:2022-07-14
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap