Skip to content
Prev 31728 / 398506 Next

Sink for a subdirectory

On Wed, 07 May 2003 21:38:14 +0000, you wrote:

            
It works for me.  It would be helpful if you said what goes wrong, and
what OS you're running in.

I'm guessing that Subdir doesn't exist; R won't create it.  I don't
think there's a mkdir() function in R; you'll need to create the
subdir outside of R, or use system() to do it.  For example, in
Windows,

system('command /c mkdir Subdir')

would do it.

Duncan Murdoch