Connection.makeDirectory(options)

Method Description

Creates an empty directory.

Returns

void

Supported Script Types

Server scripts

For more information, see SuiteScript 2.x Script Types.

Governance

10 units

Module

N/sftp Module

Since

2019.2

Parameters

Note:

The options parameter is a JavaScript object.

Parameter

Type

Required / Optional

Description

Since

options.path

string

required

The relative path of a directory to be created.

2019.2

Errors

Error Code

Thrown If

FTP_PERMISSION_DENIED

Access to the file or directory on the remote FTP server was denied.

FTP_DIRECTORY_NOT_FOUND

Creating a directory in a non-existent directory.

Syntax

Important:

The following code sample shows the syntax for this member. It is not a functional example. For a complete script example, see N/sftp Module Script Samples.

          // Add additional code
...

objConnection.makeDirectory({
    path: 'relative/path/to/remote/dir'
});
...
//Add additional code 

        

Related Topics

General Notices