tempfile                package:base                R Documentation

_C_r_e_a_t_e _N_a_m_e_s _f_o_r _T_e_m_p_o_r_a_r_y _F_i_l_e_s

_D_e_s_c_r_i_p_t_i_o_n:

     Returns a vector of character strings which can be used as names
     for temporary files.

_U_s_a_g_e:

     tempfile(pattern = "file")

_A_r_g_u_m_e_n_t_s:

 pattern: a non-empty character vector giving the initial part of the
          name.

_D_e_t_a_i_l_s:

     If `pattern' has length greater than one then the result is of the
     same length giving a temporary file name for each component of
     `pattern'. 

     The names are very likely to be unique among calls to `tempfile'
     in an R session and across simultaneous R sessions.  The filenames
     are guaranteed not to be currently in use.

     The file name is made of the pattern, the process number in hex
     and a random suffix in hex. The filenames will be in the directory
     given by the first found of the environment variables `TMP',
     `TEMP', or `"/tmp"'.

_V_a_l_u_e:

     A character vector giving the names of possible (temporary) files.

     Note that no files are generated by `tempfile'.

_S_e_e _A_l_s_o:

     `unlink' for deleting files.

_E_x_a_m_p_l_e_s:

     tempfile(c("ab", "a b c"))   # give file name with spaces in!
     ## One possibility of getting ALL environment variables;
     ## compare with `getenv':
     fun <- function() {
       FILE <- tempfile("fun")
       on.exit(unlink(FILE))
       system(paste("printenv >", FILE))
       x <- strsplit(scan(FILE, what = ""), "=")
       v <- n <- character(LEN <- length(x))
       for (i in 1:LEN) {
         n[i] <- x[[i]][1]
         v[i] <- paste(x[[i]][-1], collapse = "=")
       }
       structure(v, names = n)
     }

     fun()

