# After deleting files from ipfs local node it is still available on local node

**URL:** https://discuss.ipfs.tech/t/after-deleting-files-from-ipfs-local-node-it-is-still-available-on-local-node/9612
**Category:** Uncategorized
**Created:** [December 11, 2020, 4:21pm UTC](https://discuss.ipfs.tech/t/after-deleting-files-from-ipfs-local-node-it-is-still-available-on-local-node/9612 "2020-12-11T16:21:09Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![arunwebber](https://sea2.discourse-cdn.com/flex020/user_avatar/discuss.ipfs.tech/arunwebber/32/4268_2.png) [@arunwebber](https://discuss.ipfs.tech/u/arunwebber)
#### Post date: [December 11, 2020, 4:21pm UTC](https://discuss.ipfs.tech/t/after-deleting-files-from-ipfs-local-node-it-is-still-available-on-local-node/9612/1 "2020-12-11T16:21:09Z")

</div>

I have removed my pinned content from my IPFS node Which is running in at this IP [http://64.227.19.50/intro.html](http://64.227.19.50/intro.html) using this command.

```
*ipfs* pin rm $YOUR_HASH then
ipfs repo gc

```

But it is still available through this IP how can i delete it permanently?  
[http://64.227.19.50:8080/ipfs/$YOUR\_HASH](http://64.227.19.50:8080/ipfs/%24YOUR_HASH)  
At least from my node?

---

<div class="post-metadata">

### Author: ![adin](https://sea2.discourse-cdn.com/flex020/user_avatar/discuss.ipfs.tech/adin/32/2679_2.png) [@adin](https://discuss.ipfs.tech/u/adin)
#### Post date: [December 11, 2020, 4:52pm UTC](https://discuss.ipfs.tech/t/after-deleting-files-from-ipfs-local-node-it-is-still-available-on-local-node/9612/2 "2020-12-11T16:52:19Z")

</div>

@arunwebber there are two reasons I can think of why that execution pattern might have resulted in you seeing the data.

1. Going to that URL caused IPFS to go download the data from someone else who has a copy which is why it’ll show up
2. You’ve also recursively pinned another object which contains that one (e.g. you pinned both a file and a directory containing that file but only unpinned the file)

---

<div class="post-metadata">

### Author: ![arunwebber](https://sea2.discourse-cdn.com/flex020/user_avatar/discuss.ipfs.tech/arunwebber/32/4268_2.png) [@arunwebber](https://discuss.ipfs.tech/u/arunwebber)
#### Post date: [December 12, 2020, 3:37am UTC](https://discuss.ipfs.tech/t/after-deleting-files-from-ipfs-local-node-it-is-still-available-on-local-node/9612/3 "2020-12-12T03:37:08Z")

</div>

As far as I remember I didn’t pinned the folder only the file. Is there any way to remove this? I am concerned about the bandwidth usage because that file is heavy in size. Also If I execute the command.  
`*ipfs* pin rm $YOUR_HASH`  
I is showing me an error  
`Error: not pinned or pinned indirectly`  
After that I execute  
`ipfs repo gc`  
On the console I could see it is removing a lot of pins from my repo. This keeps happening at any time I excecute ipfs repo gc.
