るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.109秒)

別のキーワード

  1. openssl p
  2. openssl p=
  3. fileutils mkdir_p
  4. kernel p
  5. matrix p

ライブラリ

クラス

検索結果

Pathname#ctime -> Time (21142.0)

File.ctime(self.to_s) を渡したものと同じです。

....ctime(self.to_s) を渡したものと同じです。

//emlist[例][ruby]{
require 'pathname'

IO.write("testfile", "test")
p
athname = Pathname("testfile")
p
athname.ctime # => 2019-01-14 00:39:51 +0900
sleep 1
p
athname.chmod(0755)
p
athname.ctime # => 2019-01-14 00:39:52 +0900
//}

@see File.ctime...