search for: do_dircreate

Displaying 2 results from an estimated 2 matches for "do_dircreate".

2009 Aug 20
1
header containing (PR#13834)
This problem arises on Solaris because apparently Solaris 10 returns the error "ENOSYS" when you try to make a directory on an automount point (translates to "unsupported file system operation"). The R mkdir function invokes do_dircreate in platform.c. The logic in this function, when the recursive option is set, attempts to mkdir() all of the antecedent elements of the directory, including directories that may already exist. The function is configured to therefore ignore the "eexist" error returned when do_dircreat...
2011 Mar 18
1
[Patch suggestion] Adding 3rd arg to tempfile() to set extension
...========================= --- src/main/names.c (revision 54862) +++ src/main/names.c (working copy) @@ -786,7 +786,7 @@ {"file.info", do_fileinfo, 0, 11, 1, {PP_FUNCALL, PREC_FN, 0}}, {"file.access", do_fileaccess, 0, 11, 2, {PP_FUNCALL, PREC_FN, 0}}, {"dir.create", do_dircreate, 0, 11, 4, {PP_FUNCALL, PREC_FN, 0}}, -{"tempfile", do_tempfile, 0, 11, 2, {PP_FUNCALL, PREC_FN, 0}}, +{"tempfile", do_tempfile, 0, 11, 3, {PP_FUNCALL, PREC_FN, 0}}, {"tempdir", do_tempdir, 0, 11, 0, {PP_FUNCALL, PREC_FN, 0}}, {"R.home", do_Rhome, 0, 11, 0,...