mkdtemp
Call Signature
Section titled “Call Signature”mkdtemp(
this,prefix,callback):void
Defined in: src/node/async.ts:741
Asynchronously creates a unique temporary directory. Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
Parameters
Section titled “Parameters”unknown
prefix
Section titled “prefix”string
callback
Section titled “callback”Callback<[string]>
Returns
Section titled “Returns”void
Call Signature
Section titled “Call Signature”mkdtemp(
this,prefix,options,callback):void
Defined in: src/node/async.ts:742
Asynchronously creates a unique temporary directory. Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
Parameters
Section titled “Parameters”unknown
prefix
Section titled “prefix”string
options
Section titled “options”EncodingOption
callback
Section titled “callback”Callback<[string]>
Returns
Section titled “Returns”void
Call Signature
Section titled “Call Signature”mkdtemp(
this,prefix,options,callback):void
Defined in: src/node/async.ts:743
Asynchronously creates a unique temporary directory. Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
Parameters
Section titled “Parameters”unknown
prefix
Section titled “prefix”string
options
Section titled “options”BufferEncodingOption
callback
Section titled “callback”Callback<[Buffer<ArrayBufferLike>]>
Returns
Section titled “Returns”void