Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for validateSmbUrl (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/jcifs/util/PathValidator.java

        /**
         * Validate an SMB URL
         *
         * @param smbUrl the SMB URL to validate
         * @return normalized safe URL
         * @throws SmbException if URL is invalid
         */
        public String validateSmbUrl(String smbUrl) throws SmbException {
            if (smbUrl == null || smbUrl.isEmpty()) {
                throw new SmbException("SMB URL cannot be null or empty");
            }
    
            // Check URL format
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 14.5K bytes
    - Click Count (0)
Back to Top