> For the complete documentation index, see [llms.txt](https://exaprotocol.gitbook.io/home/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://exaprotocol.gitbook.io/home/exadrive-dashboard/use-the-file-in-your-project.md).

# Use the File in Your Project

<figure><img src="/files/d577huHyBC7kqC8JfVab" alt=""><figcaption></figcaption></figure>

Once you have uploaded a file to your ExaDrive bucket, you can easily incorporate it into your projects. Here’s how to utilize the file:

### Accessing the File

1. **Locate the File**:
   * Navigate to the **Buckets** section and select the relevant bucket.
   * Find your uploaded file in the list.
2. **File Details**:
   * **Filename**: The name of the file.
   * **Directory**: The path where the file is stored.
   * **Mimetype**: The file type (e.g., image/png).
   * **Size**: The file size.
   * **Public URL**: The file is accessible via a public URL.

### Using the File in Projects

### Step 1: Copy the CDN URL

* Click on **COPY URL** next to the file. This URL is the direct link to your file, hosted on ExaDrive's CDN.

### Step 2: Integrate the URL

* **Web Projects**: Use the URL in your HTML or CSS to display images or link to files.

  ```
  <img src="https://12345678-w3.exadrivecdn.com/file.png" alt="My Image">
  ```
* **Mobile Apps**: Use the URL to fetch and display the file in your app.
* **APIs**: Include the URL in API responses to provide access to the file.

### Step 3: Manage File Access

* **Public Access**: Remember that all files are public. Ensure that sensitive data is not exposed inadvertently.

### Steps to Delete

1. **Locate the File**:
   * In the bucket view, find the file you wish to delete.
2. **Delete the File**:
   * Click the **Delete** button next to the file.
   * Confirm the deletion if prompted.

By following these steps, you can efficiently upload and delete files within the ExaDrive Dashboard.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://exaprotocol.gitbook.io/home/exadrive-dashboard/use-the-file-in-your-project.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
