Size Property

For files, returns the size, in bytes, of the specified file. For folders, returns the size, in bytes, of all files and subfolders contained in the folder.

                      object.Size 

Remarks

The object is always a File or Folder object.

The following code illustrates the use of the Size property with a Folder object:

function ShowFolderSize(filespec)
{
   var fso, f, s;
   fso = new ActiveXObject("Scripting.FileSystemObject");
   f = fso.GetFolder(filespec);
   s = f.Name + " uses " + f.size + " bytes.";
   return(s);
}
 Function ShowFolderSize(filespec)
   Dim fso, f, s
   Set fso = CreateObject("Scripting.FileSystemObject")
   Set f = fso.GetFolder(filespec)
   s = UCase(f.Name) & " uses " & f.size & " bytes."
   ShowFolderSize = s
End Function

Applies To:

File Object| Folder Object

See Also

Reference

Attributes Property

DateCreated Property

DateLastAccessed Property

DateLastModified Property

Drive Property

Files Property (FileSystemObject)

IsRootFolder Property

Name Property (FileSystemObject)

ParentFolder Property

Path Property (FileSystemObject)

ShortName Property

ShortPath Property

SubFolders Property

Type Property