-
Posts
396 -
Joined
-
Last visited
-
Days Won
15
Community Answers
-
heldercervantes's post in Deleting media was marked as the answer
With a little help from another post from Ryan, I got this:
$dir = $page->filesManager->path; $dit = new DirectoryIterator($dir); foreach($dit as $df) { unlink($df->getPathname()); } rmdir($dir); $pages->uncache($page); And away go all assets from said page.