Skip to content

$fn.createFolder(path)

Creates a folder in the specified path. "asynchronous"

Arguments

NameTypeDescription
pathstringPath of the folder to be created

Return value

None

Sample

try {
await $fn.createFolder('/folder1');
} catch (err) {
console.log("Error", err);
}