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
FullPath
The full path, this will be FolderPath + PathSeparator + Name
string FullPath { get; }
Property Value
ItemType
The device item type.
DeviceFileType ItemType { get; }
Property Value
- DeviceFileType
Name
The name of the item.
string Name { get; }
Property Value
Parent
The parent item. For root items this will be itself.
IInternalStorageItem Parent { get; }
Property Value
PathSeparator
The path separator.
char PathSeparator { get; }