Share via


IFsrmAutoApplyQuota.ExcludeFolders Property

 

Retrieves or sets an array of immediate subdirectories to exclude from the automatic quota.

Namespace:   Microsoft.Storage
Assembly:  srmlib (in srmlib.dll)

Syntax

object[] ExcludeFolders { get; set; }
property array<Object^>^ ExcludeFolders {
    array<Object^>^ get();
    void set(array<Object^>^ value);
}
abstract ExcludeFolders : Object[] with get, set
Property ExcludeFolders As Object()

Property Value

Type: System.Object[]

Returns a Object containing variants that contains one or more subdirectory (folder) names to exclude from the automatic quota. Set the variant type of each variant to VT_BSTR. Use the bstrVal member to specify the folder.

The maximum number of folders in the array is 32.

A folder name must not be a full or relative path; it must be a single directory name.

Remarks

The list can contain the names of existing subdirectories or subdirectories that may exist in the future.

Setting this property overwrites the current list of subdirectories to exclude. To remove all folders, pass an empty array.

See Also

IFsrmAutoApplyQuota Interface
Microsoft.Storage Namespace

Return to top