Skip to content

Instantly share code, notes, and snippets.

@LukasReschke
Created October 15, 2015 21:25
Show Gist options
  • Save LukasReschke/090d5c643f454891b3e2 to your computer and use it in GitHub Desktop.
Save LukasReschke/090d5c643f454891b3e2 to your computer and use it in GitHub Desktop.
How to move a folder in ownCloud using the Node API
<?php
require_once './lib/base.php';
$rootFolder = \OC::$server->getRootFolder();
$folderToMove = $rootFolder->get('/admin/files/folderToMove');
$folderToMove->move('/admin/files/NewPath');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment