在GO中使用API​​2和UAPI导出cPanel完整备份

时间:2019-09-26 09:09:37

标签: go cpanel cpanel-uapi

我能够使用API​​2和UAPI从cPanel创建,还原,列出完整备份,但是我无法使用GO中的API2和UAPI从cPanel导出创建的备份tar.gz文件。

func (c CpanelApi) GetFileActions(dir, file string, newedit bool) (GetFileActionsApiResponse, error) {
    var out GetFileActionsApiResponse
    err := c.Gateway.API2("Fileman", "download", cpanelgo.Args{
        "dir":  dir,
        "file": file,
    }, &out)

    return out, err
}

0 个答案:

没有答案