Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for followSymlinks (0.33 sec)

  1. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/impl/DefaultDeleter.java

        }
    
        @Override
        public boolean ensureEmptyDirectory(File root, boolean followSymlinks) throws IOException {
            if (root.exists()) {
                if (root.isDirectory()
                    && (followSymlinks || !isSymlink.test(root))) {
                    return deleteRecursively(root, followSymlinks
                        ? Handling.KEEP_AND_FOLLOW_SYMLINKED_DIRECTORIES
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 17:10:06 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    ==== Delete operations correctly handle symbolic links on Windows
    
    Gradle no longer ignores the `followSymlink` option on Windows for the `clean` task, all `Delete` tasks, and `project.delete {}` operations in the presence of junction points and symbolic links.
    
    ==== Fix in publication of additional artifacts
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
Back to top