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

本文介绍了使用Ruby语言进行文件和目录操作的基本方法,包括如何新建、读取、删除及重命名文件,以及如何创建、删除目录和遍历目录内容等。通过具体的代码示例,帮助读者快速掌握Ruby中文件系统的主要功能。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

一、新建文件 
1
2
3
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

二、读取文件

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

输出:

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

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

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

三、目录操作

1
2
3
4
5
6
7
8
9
10
11
12
13
创建目录
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
}

输出:

1
2
"C:/studyruby"
"c:/ruby"

查看目录信息

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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>
本文转自敏捷的水博客园博客,原文链接http://www.cnblogs.com/cnblogsfans/archive/2009/09/17/1568804.html如需转载请自行联系原作者

王德水
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值