Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

2014-01-06から1日間の記事一覧

Ruby | File | ctime

概要 File.ctime 詳細 指定ファイルの最終変更時刻を返却する chmod等による変更の時間。 サンプル コード # encoding: utf-8 def create_file(filename, contents) File.open(filename, 'a:utf-8') do |f| f.print contents end end filename = 'sample.txt…