Skip to content

Latest commit

 

History

History
135 lines (88 loc) · 2.04 KB

Ftp.md

File metadata and controls

135 lines (88 loc) · 2.04 KB

Ftp

Listar Archivos

Para crear de clic: 1. Ftp --> 2. Listar Archivos --> 3. indicar server:valor, username:valor, password:valor, port:22, filepathftp:

classname: ApiFtp.ListDirectory

call('{
    "classname":"ApiFtp.ListDirectory",
    value:
    {
        "server":"",
        "username":"",
        "password":"",
        "port":22,
        "filepathftp":""
    }
}')

Subir Archivo

Para crear de clic: 1. Ftp --> 2. Subir Archivo --> 3. indicar server:valor, username:valor, password:valor, port:22, filepathftp:valor, localpath:

classname: ApiFtp.PutFile

call('{
    "classname":"ApiFtp.PutFile",
    value:
    {
        "server":"",
        "username":"",
        "password":"",
        "port":22,
        "filepathftp":"",
        "localpath":""
    }
}')

Crear Directorio

Para crear de clic: 1. Ftp --> 2. Crear Directorio --> 3. indicar server:valor, username:valor, password:valor, port:22, filepathftp:

classname: ApiFtp.AddDirectory

call('{
    "classname":"ApiFtp.AddDirectory",
    value:
    {
        "server":"",
        "username":"",
        "password":"",
        "port":22,
        "filepathftp":""
    }
}')

Eliminar Archivo

Para crear de clic: 1. Ftp --> 2. Eliminar Archivo --> 3. indicar server:valor, username:valor, password:valor, port:22, filepathftp:

classname: ApiFtp.DeleteFile

call('{
    "classname":"ApiFtp.DeleteFile",
    value:
    {
        "server":"",
        "username":"",
        "password":"",
        "port":22,
        "filepathftp":""
    }
}')

Bajar Archivo

Para crear de clic: 1. Ftp --> 2. Bajar Archivo --> 3. indicar server:valor, username:valor, password:valor, port:22, filepathftp:valor, localpath:

classname: ApiFtp.GetFile

call('{
    "classname":"ApiFtp.GetFile",
    value:
    {
        "server":"",
        "username":"",
        "password":"",
        "port":22,
        "filepathftp":"",
        "localpath":""
    }
}')