Re: [R] Folder size

2015-03-01 Thread Luca Cerone
of course you can substitute "." with a path to your folder.. and you might want to set fullnames = TRUE and maybe include.dirs = TRUE in list.files On Sun, Mar 1, 2015 at 12:59 PM, Luca Cerone wrote: > Hi Christopher, > > sum(file.info(list.files(".", all.files = TRUE, recursive = TRUE))$size) >

Re: [R] Folder size

2015-03-01 Thread Luca Cerone
Hi Christopher, sum(file.info(list.files(".", all.files = TRUE, recursive = TRUE))$size) should do the trick. Cheers, Luca On Sun, Mar 1, 2015 at 12:33 PM, Christofer Bogaso wrote: > Hi again, > > I am wondering if there is any way to extract the Folder size. For > example, I want to get infor

[R] Folder size

2015-03-01 Thread Christofer Bogaso
Hi again, I am wondering if there is any way to extract the Folder size. For example, I want to get information of size for all folders in my C: drive. It seems that the function file.info() only work for File, not on Folder. Appreciate any pointer. Thanks and regards,