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.
理论问题:如果我要创建一个目录 Dir.mkdir('/test'),这个目录会被创建为 /app/test 还是 /public/test?
它将在文件系统test的根路径 ( /) 下创建,因为您指定的是绝对路径(并且很可能由于权限问题而失败)。
test
/
分别使用Dir.mkdir('app/test')或Dir.mkdir('public/test')。
Dir.mkdir('app/test')
Dir.mkdir('public/test')