Click or drag to resize
GDStorageFolderAttributes Property
Gets the attributes of the current folder.

Namespace:  GD
Assembly:  GD (in GD.dll) Version: 255.255.255.255
Syntax
public FileAttributes Attributes { get; }

Property Value

Type: FileAttributes
The attributes of the current folder.

Implements

IGDStorageItemAttributes
IGDStorageItemAttributes
Exceptions
ExceptionCondition
Exception(C# equivalent: System.IO.FileNotFoundException) Folder could not be found. HResult ERROR_FILE_NOT_FOUND.
Examples
The following example shows how to check the attributes of a folder.
using Windows.Storage;
using System.Diagnostics; // For writing results to the Output window.
using GD;

// Get the GD root folder
StorageFolder appFolder = GDWindows.Instance.SecureFolder

// Get the folder's attributes.
FileAttributes folderAttributes = appFolder.Attributes;

// Check the folder's attributes.
// Write the results to the Visual Studio Output window.
if ((folderAttributes & FileAttributes.ReadOnly) == FileAttributes.ReadOnly)
    Debug.WriteLine("The item is read-only.");
if ((folderAttributes & FileAttributes.Directory) == FileAttributes.Directory)
    Debug.WriteLine("The item is a folder.");
if ((folderAttributes & FileAttributes.Archive) == FileAttributes.Archive)
    Debug.WriteLine("The item is archived.");
if ((folderAttributes & FileAttributes.Temporary) == FileAttributes.Temporary)
    Debug.WriteLine("The item is temporary.");
See Also