在Ruby中创建文件的最佳方法是什么?

类似于Unix命令touch:

touch file.txt

最佳答案

FileUtils.touch 看起来像它的功能,并镜像touch命令:

require 'fileutils'
FileUtils.touch('file.txt')

*与touch(1)不同,您不能单独更新mtime或atime。它还缺少其他一些不错的选择。

关于ruby - 在Ruby中创建一个空文件: “touch”是否等效?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8100574/

10-12 04:15