nextcloud/apps/files_external/ajax/removeRootCertificate.php

9 lines
231 B
PHP
Raw Normal View History

<?php
OCP\JSON::checkAppEnabled('files_external');
$view = \OCP\Files::getStorage("files_external");
$cert = $_POST['cert'];
$file = \OCP\Config::getSystemValue('datadirectory').$view->getAbsolutePath("").$cert;
unlink($file);
?>