Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for followSymlinks (0.44 sec)

  1. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/impl/AbstractSymlinkDeleterTest.groovy

            when:
            boolean didWork = delete(followSymlinks, link)
    
            then:
            !link.exists()
            originalFile.assertExists()
            didWork
    
            cleanup:
            link.delete()
    
            where:
            followSymlinks << [true, false]
        }
    
        private boolean delete(boolean followSymlinks, File path) {
            return deleter.deleteRecursively(path, followSymlinks)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/Deleter.java

         *     <li>a symlink pointing to an existing directory, then either the linked directory's
         *     contents are removed recursively (if {@code followSymlinks} is {@code true}),
         *     or the link is removed and a new directory is created (if {@code followSymlinks}
         *     is {@code false}),</li>
         *     <li>a file, or a symlink to an existing file, it is deleted and a directory is created in its place,</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.Delete.xml

                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr><td>delete</td></tr>
                <tr><td>targetFiles</td></tr>
                <tr><td>followSymlinks</td></tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 637 bytes
    - Viewed (0)
Back to top