I want to compute the size of a directory in R. I tried to use the list.info
function, by unfortunably that follows the symbolic links so my results are biased:
# return wrong size, with duplicate counts for symlinks
sum(file.info(list.files(path = '/my/directory/', recursive = T, full.names = T))$size)
How do I compute the file size of a directory, so that it gives me the same result as on Linux, e.g. with du -s
for example?
Thanks