Move the function mkdirp into common to be generally available. Use the new common.mkdirp from create_user_directory() from core/init.lua replacing previous parent directory creation code within the function. The previous mkdirp function did not work on Windows where absolute paths starts with a drive letter. The code from create_user_directory() did not have this problem but was wrong in the way it was creating the nested directories. The new implementation in common.mkdirp fix both problems.
15 lines
403 B
Lua
15 lines
403 B
Lua
local core = require "core"
|
|
local command = require "core.command"
|
|
local common = require "core.common"
|
|
|
|
command.add(nil, {
|
|
["files:create-directory"] = function()
|
|
core.command_view:enter("New directory name", function(text)
|
|
local success, err, path = common.mkdirp(text)
|
|
if not success then
|
|
core.error("cannot create directory %q: %s", path, err)
|
|
end
|
|
end)
|
|
end,
|
|
})
|