易网时代-编程资源站
Welcome
微信登录
编程资源
图片资源库
蚂蚁家优选
PDF转换器
软件资源
软件开发
、
小程序制作
、
系统集成与运维
、
空间租用
、
硬件开发
、
视频监控
、
技术咨询与支持
——联系电话:0311-88999002/88999003
首页
/
操作系统
/
Linux
/
修改目录文件名-Ruby实现
修改目录文件名-Ruby实现
require
"pathname"
def
change_name
puts
"------------"
current_path = Pathname.
new
(File.dirname(__FILE__)).realpath
current_file_name = __FILE__
begin
Dir:
:foreach
(current_path)
do
|file|
if
file!=
"."
and
file!=
".."
and
file!=
".#{ current_file_name }.swp"
and
file!=
"#{ current_file_name }"
#puts "File:"+file
1.upto(9)
do
|i|
File.rename(
"#{ i.to_s }#{ i.to_s }.rb"
,
"#{ i.to_s }.rb"
)
puts
"执行第#{ i }个文件"
end
break
end
end
rescue
=> e
puts
"错误:"
+e
#ensure
# puts "请确保文件名是否匹配!"
end
puts
"------------"
end
change_name
收藏该网址
版权所有©石家庄振强科技有限公司2024
冀ICP备08103738号-5
网站地图