Close
Close window
OpenTemporaryFile - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.
Maplesoft logo
Maplesoft logo

Online Help

All Products Maple MapleSim


[フレーム] [フレーム]

FileTools[Text]

OpenTemporaryFile

open a temporary file for text functions

Calling Sequence

OpenTemporaryFile(prefix)

Parameters

prefix

-

(optional) string prefix for the temporary file's name

suffix

-

(optional) string suffix for the temporary file's name

Description

The OpenTemporaryFile() function creates a temporary text file and opens it for writing. It returns a string giving the name of the file, which can be used as a file handle in other file I/O operations. The filename will be of the form MapleXXXXXX, where each X is replaced with a random character.

If the optional prefix is provided, then the generated file name will be of the form prefixXXXXXX.

If both a prefix and suffix are provided, then the generated file name will be of the form prefixXXXXXXsuffix. A prefix must be provided if a suffix is to be specified.

The current implementation of OpenTemporaryFile in not secure. Between generating the unique filename and creating the file, another process may be able to create a file with the same name. By doing so, the other process can read information from or write information into the file.

If no temporary file can be created, an exception is raised.

Examples

>

withFileTools:

>

fn1TextOpenTemporaryFile

fn1MapleQuZ8DIZQ

(1)
>

fn2TextOpenTemporaryFileJoinPathTemporaryDirectory,MyTmp

fn2/tmp/MyTmpeCTfSmBX

(2)
>

TextClosefn1

>

TextClosefn2

>

Removefn1

>

Removefn2


Download Help Document

AltStyle によって変換されたページ (->オリジナル) /