Click or drag to resize

PathSelectionListGetFolderSizeCallback Method

This callback method is called once the asynchronous calculation of a folder size is finished.

Namespace:  Jam.Shell
Assembly:  ShellBrowser.Winforms (in ShellBrowser.Winforms.dll) Version: 6.3.1
Syntax
protected void GetFolderSizeCallback(
	string p_Path,
	long p_Size,
	int p_FileCount,
	int p_FolderCount,
	Object p_State
)

Parameters

p_Path
Type: SystemString
The path for that the folder size.
p_Size
Type: SystemInt64
The size of the folder in Bytes.
p_FileCount
Type: SystemInt32
The number of files in this path.
p_FolderCount
Type: SystemInt32
The number of folders in this path.
p_State
Type: SystemObject
A user supplied state object, in this case a bool value that indicates if the folder size should be subtracted from the existing values, instead of adding them.
See Also