Implemented 'createFolder'

This commit is contained in:
Tristan B. Kildaire 2020-07-29 10:16:47 +02:00
parent ae944f5647
commit 0392752b01
1 changed files with 1 additions and 2 deletions

View File

@ -237,9 +237,8 @@ public final class Folder
/* Create the folder in the filesystem */
mkdir("mailboxes/"~mailbox.username~"/"~folderPath~"/"~folderName);
/* TODO: Re-enable */
/* Create an instance of the newly created folder */
// newFolder = new Folder(mailbox, this, folderName);
newFolder = new Folder(mailbox, this, folderName);
return newFolder;