Table of Contents

Interface IInternalStorageFolder

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

Internal storage folder.

public interface IInternalStorageFolder : IInternalStorageItem
Inherited Members

Methods

AddFile(IInternalStorageFile)

Add a file to this folder.

void AddFile(IInternalStorageFile file)

Parameters

file IInternalStorageFile

The file to be added.

AddSubFolder(IInternalStorageFolder)

Add a sub folder to this folder.

void AddSubFolder(IInternalStorageFolder folder)

Parameters

folder IInternalStorageFolder

The folder to be added.

GetFiles()

Get a list of files for this folder.

IReadOnlyList<IInternalStorageFile> GetFiles()

Returns

IReadOnlyList<IInternalStorageFile>

A list of files.

GetFilesAsync()

Get a list of files for this folder.

Task<IReadOnlyList<IInternalStorageFile>> GetFilesAsync()

Returns

Task<IReadOnlyList<IInternalStorageFile>>

A list of files.

GetSubFolders()

Get a list of subfolders for this folder

IReadOnlyList<IInternalStorageFolder> GetSubFolders()

Returns

IReadOnlyList<IInternalStorageFolder>

A list of folders

GetSubFoldersAsync()

Get a list of subfolders for this folder

Task<IReadOnlyList<IInternalStorageFolder>> GetSubFoldersAsync()

Returns

Task<IReadOnlyList<IInternalStorageFolder>>

A list of folders