Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for fileNames (0.12 sec)

  1. android/guava/src/com/google/common/io/MoreFiles.java

        Path name = path.getFileName();
    
        // null for empty paths and root-only paths
        if (name == null) {
          return "";
        }
    
        String fileName = name.toString();
        int dotIndex = fileName.lastIndexOf('.');
        return dotIndex == -1 ? fileName : fileName.substring(0, dotIndex);
      }
    
      /**
       * Deletes the file or directory at the given {@code path} recursively. Deletes symbolic links,
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 16:07:00 UTC 2024
    - 35K bytes
    - Viewed (0)
  2. guava/src/com/google/common/io/MoreFiles.java

        Path name = path.getFileName();
    
        // null for empty paths and root-only paths
        if (name == null) {
          return "";
        }
    
        String fileName = name.toString();
        int dotIndex = fileName.lastIndexOf('.');
        return dotIndex == -1 ? fileName : fileName.substring(0, dotIndex);
      }
    
      /**
       * Deletes the file or directory at the given {@code path} recursively. Deletes symbolic links,
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 16:07:00 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.32.md

        - [Changed](#changed-2)
        - [Removed](#removed-2)
    
    <!-- END MUNGE: GENERATED_TOC -->
    
    # v1.32.0-alpha.3
    
    
    ## Downloads for v1.32.0-alpha.3
    
    
    
    ### Source Code
    
    filename | sha512 hash
    -------- | -----------
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Tue Oct 29 20:17:52 UTC 2024
    - 121.6K bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/request-files.md

    ### `UploadFile`
    
    `UploadFile` tem os seguintes atributos:
    
    * `filename`: Uma `str` com o nome do arquivo original que foi enviado (por exemplo, `myimage.jpg`).
    * `content_type`: Uma `str` com o tipo de conteúdo (tipo MIME / tipo de mídia) (por exemplo, `image/jpeg`).
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Oct 30 19:52:32 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. docs/pt/docs/advanced/custom-response.md

    * `headers` - quaisquer cabeçalhos que serão incluídos, como um dicionário.
    * `media_type` - Uma string com o media type. Se não for definida, o media type é inferido a partir do nome ou caminho do arquivo.
    * `filename` - Se for definido, é incluído no cabeçalho `Content-Disposition`.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Oct 29 11:47:10 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top