Table of Contents

Interface IInternalStorageItem

Namespace
PalmSens.Core.Simplified.InternalStorage
Assembly
PalmSens.Core.Simplified.dll

Internal storage item

public interface IInternalStorageItem

Properties

FolderPath

The folder path to the item.

string FolderPath { get; }

Property Value

string

FullPath

The full path, this will be FolderPath + PathSeparator + Name

string FullPath { get; }

Property Value

string

ItemType

The device item type.

DeviceFileType ItemType { get; }

Property Value

DeviceFileType

Name

The name of the item.

string Name { get; }

Property Value

string

Parent

The parent item. For root items this will be itself.

IInternalStorageItem Parent { get; }

Property Value

IInternalStorageItem

PathSeparator

The path separator.

char PathSeparator { get; }

Property Value

char