Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,148 for files (0.02 sec)

  1. guava/src/com/google/common/io/Files.java

      public static boolean equal(File file1, File file2) throws IOException {
        checkNotNull(file1);
        checkNotNull(file2);
        if (file1 == file2 || file1.equals(file2)) {
          return true;
        }
    
        /*
         * Some operating systems may return zero as the length for files denoting system-dependent
         * entities such as devices or pipes, in which case we must fall back on comparing the bytes
         * directly.
         */
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-05-13 17:27
    - 32.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/Files.java

      public static boolean equal(File file1, File file2) throws IOException {
        checkNotNull(file1);
        checkNotNull(file2);
        if (file1 == file2 || file1.equals(file2)) {
          return true;
        }
    
        /*
         * Some operating systems may return zero as the length for files denoting system-dependent
         * entities such as devices or pipes, in which case we must fall back on comparing the bytes
         * directly.
         */
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-05-13 17:27
    - 32.9K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/static-files.md

    # Static Files
    
    You can serve static files automatically from a directory using `StaticFiles`.
    
    ## Use `StaticFiles`
    
    * Import `StaticFiles`.
    * "Mount" a `StaticFiles()` instance in a specific path.
    
    {* ../../docs_src/static_files/tutorial001.py hl[2,6] *}
    
    /// note | Technical Details
    
    You could also use `from starlette.staticfiles import StaticFiles`.
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-09 16:39
    - 1.6K bytes
    - Viewed (0)
  4. docs/ko/docs/tutorial/static-files.md

    {* ../../docs_src/static_files/tutorial001.py hl[2,6] *}
    
    /// note | 기술적 세부사항
    
    `from starlette.staticfiles import StaticFiles` 를 사용할 수도 있습니다.
    
    **FastAPI**는 단지 개발자인, 당신에게 편의를 제공하기 위해 `fastapi.static files` 와 동일한 `starlett.static files`를 제공합니다. 하지만 사실 이것은 Starlett에서 직접 온 것입니다.
    
    ///
    
    ### "마운팅" 이란
    
    "마운팅"은 특정 경로에 완전히 "독립적인" 애플리케이션을 추가하는 것을 의미하는데, 그 후 모든 하위 경로에 대해서도 적용됩니다.
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-18 02:25
    - 2K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/request-files.md

    This is because uploaded files are sent as "form data".
    
    ///
    
    ## Import `File`
    
    Import `File` and `UploadFile` from `fastapi`:
    
    {* ../../docs_src/request_files/tutorial001_an_py39.py hl[3] *}
    
    ## Define `File` Parameters
    
    Create file parameters the same way you would for `Body` or `Form`:
    
    {* ../../docs_src/request_files/tutorial001_an_py39.py hl[9] *}
    
    /// info
    
    `File` is a class that inherits directly from `Form`.
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-09 16:39
    - 7K bytes
    - Viewed (0)
  6. docs/uk/docs/tutorial/static-files.md

    Valentyn <******@****.***> 1738966673 +0200
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-02-07 22:17
    - 2.6K bytes
    - Viewed (0)
  7. docs/es/docs/tutorial/static-files.md

    Sebastián Ramírez <******@****.***> 1735583217 +0000
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-12-30 18:26
    - 1.8K bytes
    - Viewed (0)
  8. docs/uk/docs/tutorial/request-files.md

    ///
    
    ## Імпорт `File`
    
    Імпортуйте `File` та `UploadFile` з `fastapi`:
    
    {* ../../docs_src/request_files/tutorial001_an_py39.py hl[3] *}
    
    ## Визначення параметрів `File`
    
    Створіть параметри файлів так само як Ви б створювали `Body` або `Form`:
    
    {* ../../docs_src/request_files/tutorial001_an_py39.py hl[9] *}
    
    /// info | Інформація
    
    `File`  — це клас, який безпосередньо успадковує `Form`.
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-02-22 22:01
    - 11.2K bytes
    - Viewed (0)
  9. docs/em/docs/tutorial/request-files.md

    # 📨 📁
    
    👆 💪 🔬 📁 📂 👩‍💻 ⚙️ `File`.
    
    /// info
    
    📨 📂 📁, 🥇 ❎ <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>.
    
    🤶 Ⓜ. `pip install python-multipart`.
    
    👉 ↩️ 📂 📁 📨 "📨 💽".
    
    ///
    
    ## 🗄 `File`
    
    🗄 `File` &amp; `UploadFile` ⚪️➡️ `fastapi`:
    
    {* ../../docs_src/request_files/tutorial001.py hl[1] *}
    
    ## 🔬 `File` 🔢
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-18 02:25
    - 5.9K bytes
    - Viewed (0)
  10. docs/de/docs/tutorial/request-files.md

    Mit `File` können sie vom Client hochzuladende Dateien definieren.
    
    /// info
    
    Um hochgeladene Dateien zu empfangen, installieren Sie zuerst <a href="https://andrew-d.github.io/python-multipart/" class="external-link" target="_blank">`python-multipart`</a>.
    
    Z. B. `pip install python-multipart`.
    
    Das, weil hochgeladene Dateien als „Formulardaten“ gesendet werden.
    
    ///
    
    ## `File` importieren
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-18 02:25
    - 8K bytes
    - Viewed (0)
Back to top