[R] Creating directory under Windows R session

2007-06-20 Thread Milton Cezar Ribeiro
Hi all,

How can I create (and check the existence of) a directory in a R session under 
Windows(xp)?

Kind regards,

Miltinho


   


http://yahoo.com.br/oqueeuganhocomisso 
[[alternative HTML version deleted]]

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] Creating directory under Windows R session

2007-06-20 Thread Benilton Carvalho
?dir.create

b

On Jun 20, 2007, at 8:07 AM, Milton Cezar Ribeiro wrote:

 Hi all,

 How can I create (and check the existence of) a directory in a R  
 session under Windows(xp)?

 Kind regards,

 Miltinho

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] Creating directory under Windows R session

2007-06-20 Thread Henrique Dallazuanna
for check the existence,

any(dir('your path')==your folder)

-- 
Henrique Dallazuanna
Curitiba-Paraná-Brasil
25° 25' 40 S 49° 16' 22
Ohttp://maps.google.com/maps?f=qhl=enq=Curitiba,+Brazillayer=ie=UTF8z=18ll=-25.448315,-49.276916spn=0.002054,0.005407t=kom=1

On 20/06/07, Milton Cezar Ribeiro [EMAIL PROTECTED] wrote:

 Hi all,

 How can I create (and check the existence of) a directory in a R session
 under Windows(xp)?

 Kind regards,

 Miltinho




 

 http://yahoo.com.br/oqueeuganhocomisso
 [[alternative HTML version deleted]]

 __
 R-help@stat.math.ethz.ch mailing list
 https://stat.ethz.ch/mailman/listinfo/r-help
 PLEASE do read the posting guide
 http://www.R-project.org/posting-guide.html
 and provide commented, minimal, self-contained, reproducible code.


[[alternative HTML version deleted]]

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] Creating directory under Windows R session

2007-06-20 Thread Prof Brian Ripley
On Wed, 20 Jun 2007, Henrique Dallazuanna wrote:

 I have tested in WinXP:

 example:
 dir(C:/)
 [1] Arquivos de programas AUTOEXEC.BAT
 [3] boot.ini  Bootfont.bin
 [5] CONFIG.SYSDebug
 [7] debug.log Desktop.ini
 [9] Dic   Documents and Settings

 Dic is a folder
 any(dir(C:/)==Dic)
 [1] TRUE


 That are right?

You said the test was

any(dir('your path')==your folder)

Now, what did you mean by that?  The path C:/ is not the path to the 
folder named on the RHS.  And I believe you will find your test also gives 
TRUE for AUTOEXEC.BAT, which is not a directory.

-- 
Brian D. Ripley,  [EMAIL PROTECTED]
Professor of Applied Statistics,  http://www.stats.ox.ac.uk/~ripley/
University of Oxford, Tel:  +44 1865 272861 (self)
1 South Parks Road, +44 1865 272866 (PA)
Oxford OX1 3TG, UKFax:  +44 1865 272595

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] Creating directory under Windows R session

2007-06-20 Thread Prof Brian Ripley
On Wed, 20 Jun 2007, Henrique Dallazuanna wrote:

 for check the existence,

 any(dir('your path')==your folder)

That does not work, but fortunately R has file_test() for this purpose.

-- 
Brian D. Ripley,  [EMAIL PROTECTED]
Professor of Applied Statistics,  http://www.stats.ox.ac.uk/~ripley/
University of Oxford, Tel:  +44 1865 272861 (self)
1 South Parks Road, +44 1865 272866 (PA)
Oxford OX1 3TG, UKFax:  +44 1865 272595

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] Creating directory under Windows R session

2007-06-20 Thread Henrique Dallazuanna
I have tested in WinXP:

example:
 dir(C:/)
 [1] Arquivos de programas AUTOEXEC.BAT
 [3] boot.ini  Bootfont.bin
 [5] CONFIG.SYSDebug
 [7] debug.log Desktop.ini
 [9] Dic   Documents and Settings

Dic is a folder
 any(dir(C:/)==Dic)
[1] TRUE


That are right?


-- 
Henrique Dallazuanna
Curitiba-Paraná-Brasil
25° 25' 40 S 49° 16' 22
Ohttp://maps.google.com/maps?f=qhl=enq=Curitiba,+Brazillayer=ie=UTF8z=18ll=-25.448315,-49.276916spn=0.002054,0.005407t=kom=1

On 20/06/07, Prof Brian Ripley [EMAIL PROTECTED] wrote:

 On Wed, 20 Jun 2007, Henrique Dallazuanna wrote:

  for check the existence,
 
  any(dir('your path')==your folder)

 That does not work, but fortunately R has file_test() for this purpose.

 --
 Brian D. Ripley,  [EMAIL PROTECTED]
 Professor of Applied Statistics,  http://www.stats.ox.ac.uk/~ripley/
 University of Oxford, Tel:  +44 1865 272861 (self)
 1 South Parks Road, +44 1865 272866 (PA)
 Oxford OX1 3TG, UKFax:  +44 1865 272595


[[alternative HTML version deleted]]

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.