Skip to content
Home » General » Remove Duplicate Files Named “_conflict” in OwnCloud

Remove Duplicate Files Named “_conflict” in OwnCloud

  • General

Remove Files and Regain Space in OwnCloud

This is a quick how to on removing all of you “_conflict” files all at once

On the OwnCloud server open up a terminal

Type:
sudo bash

Enter your password

Type
cd /

Type
find ./* -name *_conflict*
this will list all of the files

find ./* -name *_conflict* -delete
this will delete all of the files

Thats it!