7
Ruby에서 File 클래스를 사용하여 디렉토리가 없으면 어떻게 생성합니까?
나는이 진술이있다 : File.open(some_path, 'w+') { |f| f.write(builder.to_html) } 어디 some_path = "somedir/some_subdir/some-file.html" 내가 원하는 것은 경로에 호출 된 디렉토리가 somedir없거나 some_subdir또는 둘 다 없는 경우 자동으로 생성하기를 원합니다. 어떻게 할 수 있습니까?
121
ruby