# Recovering a Deleted Workflow Project

You can only recover a deleted workflow project if the deletion was made via the Treasure Console. Unfortunately, if you delete a workflow project via the TD Toolbelt, it is unrecoverable.

[TD Toolbelt](/tools/cli-and-sdks/quickstart) (The Toolbelt is required to recover a deleted workflow project.)

# Recover Your Project

1. Create a workflow project using the same name as the deleted workflow project using TD Toolbelt.



```bash
$ td wf init <project name>
```

1. Upload the new project to Treasure Data using TD Toolbelt.



```bash
$ cd <project name>
$ td wf push <project name>
```

1. Check the project revision on the revision history on Treasure Console.


![](/assets/image-20200720-161442.97611e191b1c935edb193055877c8ae14111481eb38634624e2c40f1eb592766.038ab56f.png)

1. Download the Project from TD Toolbelt by specifying the revision.



```bash
$ td wf download <project name> -r <revision id>
```

1. Upload the downloaded project to Treasure Data.



```bash
$ cd <download project>
$ td wf push <project name>
```