# Delete File

The `delete_file` is used to submit transaction to delete a file. A file can have multiple holders. When the file holder is 0, the meta-information of the file on the chain will be deleted. Otherwise, only the user who called this transaction will be removed from the holder list of the specified file.

```rust
/// Submits a transaction to delete a file. The file can have multiple holders.
///
/// # Parameters
///
/// - `account`: The identifier of the account initiating the deletion transaction.
/// - `file_hash`: The unique hash of the file to be deleted.
///
/// # Returns
///
/// Returns a `Result` that, on success, contains a tuple with:
/// - `TxHash`: The transaction hash associated with the deletion of the file.
/// - `DeleteFile`: A structure representing the result of the file deletion.
///

pub async fn delete_file(
    &self,
    account: &str,
    file_hash: &str,
) -> Result<(TxHash, DeleteFile), Box<dyn std::error::Error>>
```


---

# Agent Instructions: 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:

```
GET https://doc.cess.network/developer/cess-sdk/sdk-rust/chain/file_bank/delete_file.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
