You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BoxApiFolderfolderApi = newBoxApiFolder(session);
folderApi.getDeleteRequest("folderId")
// Optional: By default the folder will be deleted including all the files/folders within.// Set 'recursive' to false to only allow for the deletion if the folder is empty.
.setRecursive(false)
.send();
Create a new Box Folder
BoxApiFolderfolderApi = newBoxApiFolder(session);
BoxFoldernewFolder = folderApi.getCreateRequest("parentFolderId", "New Folder Name").send();