Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想创建一个不存在的目录的子目录,例如:/foo/bar
/foo/bar
我试过了:
Dir.mkdir("foo/bar")
但这不起作用。
如果您尝试创建一个目录及其父目录,您想使用它FileUtils.mkdir_p。
FileUtils.mkdir_p
这是你要找的吗?
require 'fileutils' FileUtils.mkpath('/foo/bar')
mkpath是 的别名mkdir_p。
mkpath
mkdir_p