Class FileSystemUtils_Patch
java.lang.Object
org.openspaces.pu.container.servicegrid.FileSystemUtils_Patch
GS-14704
A patch for org.springframework.util.FileSystemUtils.copyRecursively method that from 5.0
the implementation no longer supports symbolic links
see pull request: https://github.com/spring-projects/spring-framework/pull/24823
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic voidcopyRecursively(File src, File dest) Recursively copy the contents of thesrcfile/directory to thedestfile/directory.static voidcopyRecursively(Path src, Path dest) Recursively copy the contents of thesrcfile/directory to thedestfile/directory.
-
Constructor Details
-
FileSystemUtils_Patch
public FileSystemUtils_Patch()
-
-
Method Details
-
copyRecursively
Recursively copy the contents of thesrcfile/directory to thedestfile/directory.- Parameters:
src- the source directorydest- the destination directory- Throws:
IOException- in the case of I/O errors
-
copyRecursively
Recursively copy the contents of thesrcfile/directory to thedestfile/directory.- Parameters:
src- the source directorydest- the destination directory- Throws:
IOException- in the case of I/O errors- Since:
- 5.0
-