2020-02-18 14:45:59 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-03-08 08:09:22 -04:00
|
|
|
import { sendSync, sendAsync } from "./ops/dispatch_json.ts";
|
2020-02-18 14:45:59 -05:00
|
|
|
|
|
|
|
export interface MakeTempOptions {
|
2020-03-02 10:19:42 -05:00
|
|
|
/** Directory where the temporary directory should be created (defaults to
|
|
|
|
* the env variable TMPDIR, or the system's default, usually /tmp). */
|
2020-02-18 14:45:59 -05:00
|
|
|
dir?: string;
|
2020-03-02 10:19:42 -05:00
|
|
|
/** String that should precede the random portion of the temporary
|
|
|
|
* directory's name. */
|
2020-02-18 14:45:59 -05:00
|
|
|
prefix?: string;
|
2020-03-02 10:19:42 -05:00
|
|
|
/** String that should follow the random portion of the temporary
|
|
|
|
* directory's name. */
|
2020-02-18 14:45:59 -05:00
|
|
|
suffix?: string;
|
|
|
|
}
|
|
|
|
|
2020-03-02 10:19:42 -05:00
|
|
|
/** Synchronously creates a new temporary directory in the directory `dir`,
|
|
|
|
* its name beginning with `prefix` and ending with `suffix`.
|
|
|
|
*
|
|
|
|
* It returns the full path to the newly created directory.
|
|
|
|
*
|
|
|
|
* If `dir` is unspecified, uses the default directory for temporary files.
|
|
|
|
* Multiple programs calling this function simultaneously will create different
|
|
|
|
* directories. It is the caller's responsibility to remove the directory when
|
|
|
|
* no longer needed.
|
2020-02-18 14:45:59 -05:00
|
|
|
*
|
|
|
|
* const tempDirName0 = Deno.makeTempDirSync();
|
|
|
|
* const tempDirName1 = Deno.makeTempDirSync({ prefix: 'my_temp' });
|
2020-03-02 10:19:42 -05:00
|
|
|
*
|
|
|
|
* Requires `allow-write` permission. */
|
2020-02-18 14:45:59 -05:00
|
|
|
export function makeTempDirSync(options: MakeTempOptions = {}): string {
|
2020-02-25 09:14:27 -05:00
|
|
|
return sendSync("op_make_temp_dir", options);
|
2020-02-18 14:45:59 -05:00
|
|
|
}
|
|
|
|
|
2020-03-02 10:19:42 -05:00
|
|
|
/** Creates a new temporary directory in the directory `dir`, its name
|
|
|
|
* beginning with `prefix` and ending with `suffix`.
|
|
|
|
*
|
|
|
|
* It resolves to the full path to the newly created directory.
|
|
|
|
*
|
|
|
|
* If `dir` is unspecified, uses the default directory for temporary files.
|
|
|
|
* Multiple programs calling this function simultaneously will create different
|
|
|
|
* directories. It is the caller's responsibility to remove the directory when
|
|
|
|
* no longer needed.
|
2020-02-18 14:45:59 -05:00
|
|
|
*
|
|
|
|
* const tempDirName0 = await Deno.makeTempDir();
|
|
|
|
* const tempDirName1 = await Deno.makeTempDir({ prefix: 'my_temp' });
|
2020-03-02 10:19:42 -05:00
|
|
|
*
|
|
|
|
* Requires `allow-write` permission. */
|
2020-02-18 14:45:59 -05:00
|
|
|
export async function makeTempDir(
|
|
|
|
options: MakeTempOptions = {}
|
|
|
|
): Promise<string> {
|
2020-02-25 09:14:27 -05:00
|
|
|
return await sendAsync("op_make_temp_dir", options);
|
2020-02-18 14:45:59 -05:00
|
|
|
}
|
|
|
|
|
2020-03-02 10:19:42 -05:00
|
|
|
/** Synchronously creates a new temporary file in the directory `dir`, its name
|
|
|
|
* beginning with `prefix` and ending with `suffix`.
|
|
|
|
*
|
|
|
|
* It returns the full path to the newly created file.
|
|
|
|
*
|
|
|
|
* If `dir` is unspecified, uses the default directory for temporary files.
|
|
|
|
* Multiple programs calling this function simultaneously will create different
|
|
|
|
* files. It is the caller's responsibility to remove the file when
|
|
|
|
* no longer needed.
|
2020-02-18 14:45:59 -05:00
|
|
|
*
|
|
|
|
* const tempFileName0 = Deno.makeTempFileSync();
|
|
|
|
* const tempFileName1 = Deno.makeTempFileSync({ prefix: 'my_temp' });
|
2020-03-02 10:19:42 -05:00
|
|
|
*
|
|
|
|
* Requires `allow-write` permission. */
|
2020-02-18 14:45:59 -05:00
|
|
|
export function makeTempFileSync(options: MakeTempOptions = {}): string {
|
2020-02-25 09:14:27 -05:00
|
|
|
return sendSync("op_make_temp_file", options);
|
2020-02-18 14:45:59 -05:00
|
|
|
}
|
|
|
|
|
2020-03-02 10:19:42 -05:00
|
|
|
/** Creates a new temporary file in the directory `dir`, its name
|
|
|
|
* beginning with `prefix` and ending with `suffix`.
|
|
|
|
*
|
|
|
|
* It resolves to the full path to the newly created file.
|
|
|
|
*
|
|
|
|
* If `dir` is unspecified, uses the default directory for temporary files.
|
|
|
|
* Multiple programs calling this function simultaneously will create different
|
|
|
|
* files. It is the caller's responsibility to remove the file when
|
|
|
|
* no longer needed.
|
2020-02-18 14:45:59 -05:00
|
|
|
*
|
|
|
|
* const tempFileName0 = await Deno.makeTempFile();
|
|
|
|
* const tempFileName1 = await Deno.makeTempFile({ prefix: 'my_temp' });
|
2020-03-02 10:19:42 -05:00
|
|
|
*
|
|
|
|
* Requires `allow-write` permission. */
|
2020-02-18 14:45:59 -05:00
|
|
|
export async function makeTempFile(
|
|
|
|
options: MakeTempOptions = {}
|
|
|
|
): Promise<string> {
|
2020-02-25 09:14:27 -05:00
|
|
|
return await sendAsync("op_make_temp_file", options);
|
2020-02-18 14:45:59 -05:00
|
|
|
}
|