Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for normalizePath (5.92 sec)

  1. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

                throw new IllegalArgumentException("File path cannot be empty");
            }
            try {
                final Path filePath = Paths.get(path).normalize();
                final String normalizedPath = filePath.toString();
                if (normalizedPath.contains("..")) {
                    throw new IllegalArgumentException("Invalid file path");
                }
                final File file = filePath.toFile();
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 27 07:01:25 UTC 2025
    - 9.7K bytes
    - Viewed (0)
Back to top