Learn R Programming

tractor.base (version 3.4.2)

threadSafeTempFile: Obtain thread-safe temporary file names

Description

This function is a wrapper around tempfile, which creates temporary file names whose path contains the process ID of the calling process. This avoids clashes between threads created by functions such as mclapply (in the ``parallel'' package), which can easily occur with the standard tempfile function.

Usage

threadSafeTempFile(pattern = "file")

Value

A character vector of temporary file names. No files are actually created.

Arguments

pattern

Character vector giving the initial part of each file name.

Author

Jon Clayden

References

Please cite the following reference when using TractoR in your work:

J.D. Clayden, S. Muñoz Maniega, A.J. Storkey, M.D. King, M.E. Bastin & C.A. Clark (2011). TractoR: Magnetic resonance imaging and tractography with R. Journal of Statistical Software 44(8):1-18. tools:::Rd_expr_doi("10.18637/jss.v044.i08").

See Also