Skip to main content

Class MeadowOS.FileSystem

Contains Meadow.OS File System information.

Assembly: Meadow.dll
View Source
Declaration
public static class MeadowOS.FileSystem

Properties

UserFileSystemRoot

Gets the root directory of the app file system partition.

View Source
Declaration
public static string UserFileSystemRoot { get; }

DataDirectory

Gets the /Data directory. Use this directory to store files that require permanent persistence, such as SQL data files, even through OS deployments and Over-the-Air (OtA) updates.

View Source
Declaration
public static string DataDirectory { get; }

DocumentsDirectory

Gets the /Documents directory. Use this directory to store files that require permanent persistence, such as application document files, even through OS deployments and Over-the-Air (OtA) updates.

View Source
Declaration
public static string DocumentsDirectory { get; }

CacheDirectory

Gets the /Cache directory. Use this directory to store semi-transient files. The contents of this folder will be erased during application updates.

View Source
Declaration
public static string CacheDirectory { get; }

TempDirectory

Gets the /Temp directory. Use this directory to store transient files.

View Source
Declaration
public static string TempDirectory { get; }