cbg-wx commented on issue #10502:
URL: https://github.com/apache/hudi/issues/10502#issuecomment-1892994059

   public static void mkdir(File directory) throws IOException {
       if (!directory.exists()) {
         directory.mkdirs();
       }
   
       if (!directory.isDirectory()) {
         throw new IOException("Unable to create :" + directory);
       }
     }


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to