View Issue Details

IDProjectCategoryView StatusLast Update
0018271MMW 5Extensions frameworkpublic2021-10-02 18:13
ReporterLudek Assigned To 
PriorityurgentSeverityminorReproducibilityalways
Status closedResolutionfixed 
Product Version5.0 
Target Version5.0.2Fixed in Version5.0.2 
Summary0018271: No way to create folder using app.filesystem
DescriptionAs reported by user and checking our documentation https://www.mediamonkey.com/docs/api/classes/Filesystem.html#method_getFolderFromString
user seems to be right that getFolderFromString description is "Creates new folder", but actually it does not create any folder just gets the 'SharedFolder' object that isn't documented though.

Method for creating folder is missing from the app.filesystem obect.

More at: https://www.mediamonkey.com/forum/viewtopic.php?f=27&t=100025
TagsNo tags attached.
Fixed in build2506

Relationships

related to 0018300 closedjiri Add Promise.finally() as replacement of Promise.then1() 

Activities

Ludek

2021-09-27 16:31

developer   ~0064879

Added SharedFolder to be documented + added also
app.filesystem.createFolderAsync

Usage like:

app.filesystem.createFolderAsync('C:\\Temp\\ababababab\\').then((folder) => {
    alert(folder.title);
}, (err => {
    alert(err);
}));

Ludek

2021-09-27 17:05

developer   ~0064881

Assigned to Jiri to update the docs on the web ( https://www.mediamonkey.com/docs/api/ )

jiri

2021-09-29 06:54

administrator   ~0064897

Uploaded updated docs.

peke

2021-10-02 18:13

developer   ~0064958

Verified 2507

Also verified api docs.