cdap icon indicating copy to clipboard operation
cdap copied to clipboard

Use java nio package for createTempDir

Open hsuk04 opened this issue 7 months ago • 0 comments

Description

This PR changes the createTempDir method in the DirUtils class to use the modern java.nio.file.Files.createTempDirectory API. The updated implementation ensures:

  • Temporary directories are created atomically within the specified baseDir
  • Improved safety and maintainability by leveraging the java nio files package

References

Referenced from a very similar commit here https://github.com/melloware/guava/commit/6b6a0708475d0c93b6cbeb68d5fbebd2b91c86ac

hsuk04 avatar May 03 '25 05:05 hsuk04