dynamicsmobile
Version:
Allows development of off-line mobile and web business apps over the Dynamics Mobile platform. More info on https://www.dynamicsmobile.com
13 lines (12 loc) • 525 B
TypeScript
export declare class WebPlatformFileManager {
protected static localStorage: any;
static getDirFiles(folder: string): Promise<string[]>;
static fileWrite(fileName: string, content: string, contentType?: string): Promise<void>;
static fileDelete(fileName: string): Promise<void>;
static validateFilePath(fileName: string): {
actualFileName: any;
actualFilePath: any;
};
static fileRead(fileName: string): Promise<string>;
static fileExist(fileName: string): Promise<boolean>;
}