กำหนดค่าการแชร์บริบทด้วยไฟล์ .aiexclude
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
เมื่อเลือกแชร์บริบทของโปรเจ็กต์กับ Gemini ใน Android Studio
คุณจะควบคุมได้ว่าจะแชร์ไฟล์ใดจากโค้ดเบสโดยใช้ไฟล์ .aiexclude
ฟีเจอร์ AI ใน Android Studio จะเข้าถึงไฟล์นอก
โปรเจ็กต์ปัจจุบันและรูทการควบคุมเวอร์ชันที่แนบมากับโปรเจ็กต์ไม่ได้ ด้วยเหตุนี้ คุณจึงวางไฟล์ .aiexclude
ได้ทุกที่ภายในโปรเจ็กต์และรูท VCS เพื่อควบคุมว่าฟีเจอร์ AI จะได้รับอนุญาตให้เข้าถึงไฟล์ใด
ไฟล์ .aiexclude
จะติดตามไฟล์ที่ไม่ควร
แชร์กับ Gemini ใน Android Studio ซึ่งรวมถึงประสบการณ์การแชท
และฟีเจอร์ AI ที่ทำงานในเอดิเตอร์ เช่น การเติมโค้ดอัตโนมัติ คล้ายกับไฟล์ .gitignore
ไฟล์
.aiexclude
จะทำงานกับไฟล์ในหรือใต้ไดเรกทอรีที่มีไฟล์นั้น

วิธีเขียนไฟล์ .aiexclude
ไฟล์ .aiexclude
จะใช้ไวยากรณ์เดียวกันกับไฟล์ .gitignore
ตัวอย่าง
ตัวอย่างการกำหนดค่าไฟล์ .aiexclude
มีดังนี้
- รูปแบบ
KEYS
จะบล็อกไฟล์ทั้งหมดที่ชื่อ "KEYS" โดยไม่มีนามสกุลไฟล์ในหรือใต้ไดเรกทอรีที่มีไฟล์ .aiexclude
KEYS
- รูปแบบ
KEYS.*
จะบล็อกไฟล์ทั้งหมดที่ชื่อ "KEYS" ที่มีนามสกุลไฟล์ใดก็ได้ใน
หรือใต้ไดเรกทอรีที่มีaiexclude
ไฟล์
KEYS.*
- รูปแบบ
*.kt
จะบล็อกไฟล์ Kotlin ทั้งหมด หรือไฟล์ที่มีนามสกุล .kt
ในหรือใต้ไดเรกทอรีที่มีไฟล์ .aiexclude
*.kt
- รูปแบบ
/*.kt
จะบล็อกไฟล์ .kt
ทั้งหมดในไดเรกทอรี .aiexclude
แต่
ไม่ได้บล็อกไฟล์ในไดเรกทอรีย่อย
/*.kt
- รูปแบบ
my/sensitive/dir/
จะบล็อกไฟล์ทั้งหมดในmy/sensitive/dir
ไดเรกทอรีและไดเรกทอรีย่อย เส้นทางไฟล์สัมพันธ์กับไดเรกทอรีที่มีไฟล์ .aiexclude
my/sensitive/dir/
- รูปแบบ
my/sensitive/dir/**/.txt
บล็อกไฟล์ .txt
ทั้งหมดที่อยู่ในหรือต่ำกว่า
ไดเรกทอรี my/sensitive/dir/
my/sensitive/dir/**/.txt
- รูปแบบ
my/sensitive/dir/*.txt
จะบล็อกไฟล์ .txt
ทั้งหมดในไดเรกทอรี
my/sensitive/dir
แต่จะไม่บล็อกในไดเรกทอรีย่อย
my/sensitive/dir/*.txt
ตัวอย่างเนื้อหาและโค้ดในหน้าเว็บนี้ขึ้นอยู่กับใบอนุญาตที่อธิบายไว้ในใบอนุญาตการใช้เนื้อหา Java และ OpenJDK เป็นเครื่องหมายการค้าหรือเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-07-31 UTC
[null,null,["อัปเดตล่าสุด 2025-07-31 UTC"],[],[],null,["# Configure context sharing with .aiexclude files\n\nWhen you opt in to sharing your project context with Gemini in Android Studio,\nyou can control which files specifically from the codebase are shared using\n`.aiexclude` files. AI features in Android Studio cannot access files outside of\nthe current project and the version control roots attached to it. With this in\nmind, you can place `.aiexclude` files anywhere within the project and its VCS\nroots to control which files AI features are allowed to access.\n\nMuch like a `.gitignore` file, an `.aiexclude` file tracks files that shouldn't\nbe shared with Gemini in Android Studio, including the chat experience as well\nas AI features that operate in the editor, like [code completion](/studio/gemini/code-completion). An\n`.aiexclude` file operates on files at or below the directory that contains it.\n\nHow to write `.aiexclude` files\n-------------------------------\n\nAn `.aiexclude` file follow the same syntax as a\n[`.gitignore` file](https://git-scm.com/docs/gitignore).\n\nExamples\n--------\n\nHere are example `.aiexclude` file configurations:\n\n- The pattern `KEYS` blocks all files called \"KEYS\" with no file extension at or below the directory that contains the `.aiexclude` file.\n\n KEYS\n\n- The pattern `KEYS.*` blocks all files called \"KEYS\" with any file extension at or below the directory that contains the .`aiexclude` file.\n\n KEYS.*\n\n- The pattern `*.kt` blocks all Kotlin files, or files with the extension `.kt`, at or below the directory that contains the `.aiexclude` file.\n\n *.kt\n\n- The pattern `/*.kt` blocks all `.kt` files in the `.aiexclude` directory, but not below.\n\n /*.kt\n\n- The pattern `my/sensitive/dir/` blocks all files in the `my/sensitive/dir` directory and below. The file path is relative to the directory that contains the `.aiexclude` file.\n\n my/sensitive/dir/\n\n- The pattern `my/sensitive/dir/**/.txt` blocks all `.txt` files at or below the directory `my/sensitive/dir/`.\n\n my/sensitive/dir/**/.txt\n\n- The pattern `my/sensitive/dir/*.txt` blocks all `.txt` files in the directory `my/sensitive/dir`, but not in sub-directories.\n\n my/sensitive/dir/*.txt"]]