Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for backslashIndex (0.07 seconds)

  1. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java

                if (colonIndex == -1) {
                    colonIndex = fileName.indexOf("\\\\"); // Windows SMB
                }
                final int backslashIndex = fileName.lastIndexOf("\\");
                if (colonIndex > -1 && backslashIndex > -1) {
                    return fileName.substring(backslashIndex + 1);
                }
                return fileName;
            }
    
            @Override
            public void destroy() {
                try {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 08:48:41 GMT 2026
    - 18.9K bytes
    - Click Count (1)
Back to Top