Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isZipFileSafeToUse (0.21 sec)

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

         *
         * @throws FileException on failure to open the Zip
         */
        public static ZipInput create(File file) throws FileException {
            if (isZipFileSafeToUse()) {
                return new FileZipInput(file);
            } else {
                try {
                    return new StreamZipInput(new FileInputStream(file));
                } catch (FileNotFoundException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:00 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top