Getting folder size information into cell???

W

Will

Hello,

I can't seem to figure out how to get folder size information into an excel
spreadsheet cell. I have the filer/server location information in one cell
and I'd like to use the information within that cell to extract the
folder/directory size and populate another cell. I can't seem to figure out
how to go about this? Any suggestions and/or solutions (if any) would be
greatly appreciated.

Please bear in mind, I'm a noob with this excel programming. ;-)

Thank you.
 
J

Joel

strFolder = "C:\temp"
Set fso = CreateObject _
("Scripting.FileSystemObject")
Set folder = _
fso.GetFolder(strFolder)
FolderSize = folder.Size
Range("A1") = folderSize
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top