在 Distribution::Resource 中§
有关方法 IO,请参阅主要文档 in context
method IO()
将相应的资源返回为 IO::Path
,该资源可以有效地用作此类资源。
在 Cool 中§
有关方法 IO,请参阅主要文档 in context
method IO(--> IO::Path)
将调用者强制转换为 IO::Path
。
.say for '.'.IO.dir; # gives a directory listing
在 role Dateish 中§
有关方法 IO,请参阅主要文档 in context
method IO(Dateish: --> IO::Path)
返回一个 IO::Path
对象,表示 Dateish 对象的字符串化值
Date.today.IO.say; # OUTPUT: «"2016-10-03".IO»DateTime.now.IO.say; # OUTPUT: «"2016-10-03T11:14:47.977994-04:00".IO»
可移植性注意:某些操作系统(例如 Windows)不允许文件名中出现冒号 (:
),而从 DateTime
对象创建的 IO::Path
中会出现冒号。
在 IO::Pipe 中§
有关方法 IO,请参阅主要文档 in context
method IO(IO::Pipe: --> IO::Path)
返回一个 IO::Path
类型对象。
在 IO::CatHandle 中§
有关方法 IO,请参阅主要文档 in context
method IO(IO::CatHandle:)
别名 .path
在 IO::Special 中§
有关方法 IO,请参阅主要文档 in context
method IO(IO::Special: --> IO::Special)
返回调用者。
say .path.IO.what; # OUTPUT: «<STDIN>»say .path.what; # OUTPUT: «<STDIN>»
在 IO::Handle 中§
有关方法 IO,请参阅主要文档 in context
method IO(IO::Handle:)
别名 .path
在 IO::Path 中§
有关方法 IO,请参阅主要文档 in context
method IO(IO::Path: --> IO::Path)
返回调用者。
在 IO::Notification::Change 中§
有关方法 IO,请参阅主要文档 in context
返回正在监视的文件的句柄。