unlink                 package:base                 R Documentation

_D_e_l_e_t_e _F_i_l_e_s _a_n_d _D_i_r_e_c_t_o_r_i_e_s

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

     `unlink' deletes the file(s) or directories specified by `x'.

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

     unlink(x)

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

       x: a character vector with the names of the file(s) or
          directories to be deleted. Wildcards (normally `*' and `?')
          are allowed.

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

     The return value of the corresponding system command, `rm -f',
     normally `0' for success, `1' for failure. Not deleting a
     non-existent file is not a failure.

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

     `tempfile' for file creation.

