ruby ftp封装实例详解
最近自己用ruby 封装了一个Net::FTP的工具类.
class FtpTool def initialize() @current_ftp = create_ftp end
# 获取指定格式的文件名称列表
# 例如: source = "test/*.txt"
# 返回: [source/file_name.txt]
def fetch_remote_filenames(source) return [] if source.blank"source is " + source) filenames = @current_ftp.nlst(source) filenames end
# 获取服务器上确切名称的文件
# 例如: get("test/test.txt")
# 文件将被保存到本地 tmp/test/test.txt
def get(origin_file) local_file = local_file(origin_file) local_file.gsub("\\", "\\\\") #此处注意是window下执行, 在linux下需要注意改成/ log_info("Ftp Get: #{origin_file} -> #{local_file}") begin @current_ftp.getbinaryfile(origin_file, local_file+".tmp") rescue delete_local_file(local_file+".tmp") end rename_local_file(local_file+".tmp", local_file) if File.exist".tmp") end
# 上传文件到指定的路径
# 例如: put("tmp\\test\\test.txt", "/test/")
def put(origin_file, remote_path) return nil if not File.exist"Ftp put: #{origin_file} -> #{remote_path}") begin @current_ftp.putbinaryfile(origin_file, remote_path + _file_name + ".tmp") rescue delete(remote_path + _file_name + ".tmp") end @current_ftp.chdir(_root) rename(remote_path + _file_name + ".tmp", remote_path + _file_name) end
# 关闭ftp
def close @current_ftp.close if @current_ftp end
# 服务器copy文件
def copy(origin_file, file_path) local_file = local_file(origin_file) _file_name = File.basename(origin_file) begin
#1. 到本地
log_info("FTP get file to:" + local_file+".tmp") @current_ftp.getbinaryfile(origin_file, local_file+".tmp") return nil if not File.exist".tmp")
#2. 到服务器
log_info("FTP put file to :" + file_path + _file_name + ".tmp") @current_ftp.putbinaryfile(local_file+".tmp", file_path + _file_name + ".tmp") #3. 改名字 rename(file_path + _file_name + ".tmp", file_path + _file_name) #5. 删除本地 delete_local_file(local_file + ".tmp") rescue => e log_info(e) #4. 删除服务器上临时文件 delete(file_path + origin_file + ".tmp") #5. 删除本地 delete_local_file(local_file + ".tmp") end end
# 服务器上移动文件
def move(origin_file, file_path) _file_name = File.basename(origin_file) begin copy(origin_file, file_path) # 删除服务器上源文件 delete(origin_file) rescue => e log_info(e) # 删除临时文件,如果存在 delete(file_path + _file_name + ".tmp") # 删除服务器上目标文件, 如果存在 delete(file_path + _file_name) end end
# 重命名服务器文件
def rename(origin_file, file) if not @current_ftp.list(origin_file).blank"FTP rename #{origin_file} to #{file}") @current_ftp.rename(origin_file, file) end end
# 删除服务器上的文件
def delete(origin_file) if not @current_ftp.list(origin_file).blank"FTP delete #{origin_file}") @current_ftp.delete(origin_file) end end
# ftp 是否关闭
def closed"htmlcode">def convert(src_file, dest_file, from_encode, to_encode ) log_info("Convert #{src_file} to #{dest_file}") cd = Iconv.new(to_encode, from_encode) File.open(dest_file, "w") do |out| File.open(src_file) do |in_stream| in_stream.each_line do |line| begin new_line = cd.iconv(line) out.write(new_line) rescue => e log_info "convert line error : #{line}" next end end end end cd.close dest_file end end protected#生成ftp
def create_ftp require "net/ftp" ftp = Net::FTP.new ftp.connect(ftp_host, ftp_port) ftp.login(ftp_user, ftp_pwd) ftp.passive = ftp_mode ftp end#本地路径
def local_file(file) local = File.join("tmp/", file) FileUtils.makedirs(File.dirname(local)) local end# 删除本地文件
def delete_local_file(file) if File.exist"delete local file : " + file) File.delete(file) end end# 重命名本地文件
def rename_local_file(origin_file, file) if File.exist"rename local file : " + origin_file + " to " + file) File.rename(origin_file, file) end end#初始化参数
def ftp_host; "x.x.x.x" end def ftp_port; "21" end def ftp_user; "x" end def ftp_pwd ; "x" end def ftp_mode; true end end
《魔兽世界》大逃杀!60人新游玩模式《强袭风暴》3月21日上线
暴雪近日发布了《魔兽世界》10.2.6 更新内容,新游玩模式《强袭风暴》即将于3月21 日在亚服上线,届时玩家将前往阿拉希高地展开一场 60 人大逃杀对战。
艾泽拉斯的冒险者已经征服了艾泽拉斯的大地及遥远的彼岸。他们在对抗世界上最致命的敌人时展现出过人的手腕,并且成功阻止终结宇宙等级的威胁。当他们在为即将于《魔兽世界》资料片《地心之战》中来袭的萨拉塔斯势力做战斗准备时,他们还需要在熟悉的阿拉希高地面对一个全新的敌人──那就是彼此。在《巨龙崛起》10.2.6 更新的《强袭风暴》中,玩家将会进入一个全新的海盗主题大逃杀式限时活动,其中包含极高的风险和史诗级的奖励。
《强袭风暴》不是普通的战场,作为一个独立于主游戏之外的活动,玩家可以用大逃杀的风格来体验《魔兽世界》,不分职业、不分装备(除了你在赛局中捡到的),光是技巧和战略的强弱之分就能决定出谁才是能坚持到最后的赢家。本次活动将会开放单人和双人模式,玩家在加入海盗主题的预赛大厅区域前,可以从强袭风暴角色画面新增好友。游玩游戏将可以累计名望轨迹,《巨龙崛起》和《魔兽世界:巫妖王之怒 经典版》的玩家都可以获得奖励。
更新动态
- 凤飞飞《我们的主题曲》飞跃制作[正版原抓WAV+CUE]
- 刘嘉亮《亮情歌2》[WAV+CUE][1G]
- 红馆40·谭咏麟《歌者恋歌浓情30年演唱会》3CD[低速原抓WAV+CUE][1.8G]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[320K/MP3][193.25MB]
- 【轻音乐】曼托凡尼乐团《精选辑》2CD.1998[FLAC+CUE整轨]
- 邝美云《心中有爱》1989年香港DMIJP版1MTO东芝首版[WAV+CUE]
- 群星《情叹-发烧女声DSD》天籁女声发烧碟[WAV+CUE]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[FLAC/分轨][748.03MB]
- 理想混蛋《Origin Sessions》[320K/MP3][37.47MB]
- 公馆青少年《我其实一点都不酷》[320K/MP3][78.78MB]
- 群星《情叹-发烧男声DSD》最值得珍藏的完美男声[WAV+CUE]
- 群星《国韵飘香·贵妃醉酒HQCD黑胶王》2CD[WAV]
- 卫兰《DAUGHTER》【低速原抓WAV+CUE】
- 公馆青少年《我其实一点都不酷》[FLAC/分轨][398.22MB]
- ZWEI《迟暮的花 (Explicit)》[320K/MP3][57.16MB]