[R] DOS command using "system"

Uwe Ligges ligges at statistik.uni-dortmund.de
Thu Jan 26 22:01:31 CET 2006


jim holtman wrote:

> Why don't you use 'unlink':
> 
> unlink('c:/Program Files/DOSPROGRAM/input.dat')
> 
> If you really want to use 'del', then you have to invoke the command
> processor:
> 
> system('cmd /c del "c:\\Program Files\\DOSPROGRAM\\input.dat"')

See also ?shell

Uwe Ligges

> 
> On 1/26/06, Taka Matzmoto <sell_mirage_ne at hotmail.com> wrote:
> 
>>HI R users
>>I have one question for using DOS command through "system"
>>I like to delete a file that is located at C:\Program
>>Files\DOSPROGRAM\input.dat
>>I can use a DOS command "del" on Dos prompt like this
>>
>>C:\Documents and Settings> del "C:\Program Files\DOSPROGRAM\input.dat"
>>
>>to delete input.dat file.
>>
>>When I try to do the same thing on R using "system" command
>>
>>system('del "C:\Program Files\DOSPROGRAM\input.dat"')
>>or
>>system("del "C:\Program Files\DOSPROGRAM\input.dat"")
>>or
>>system(paste("del", "\"C:\\Program Files\\DOSPROGRAM\\input.dat\"",sep="
>>"))
>>
>>All the three system commands did work
>>
>>Could you help me to figure out ?
>>
>>Thanks in advance
>>
>>TM
>>
>>______________________________________________
>>R-help at 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
>>
> 
> 
> 
> 
> --
> Jim Holtman
> Cincinnati, OH
> +1 513 247 0281
> 
> What the problem you are trying to solve?
> 
> 	[[alternative HTML version deleted]]
> 
> ______________________________________________
> R-help at 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




More information about the R-help mailing list