Skip to content
Home » owncloud

owncloud

Visit Tacticalware.com for information related to this tag and others. We look forward to assisting in your tech projects with our in-depth knowledgebase…

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!