file.remove().then((res)=>{// Success removing the file.
vm.set("resultMessage","File successfully deleted!");}).catch((err)=>{console.log(err.stack);});
file.remove().then((res)=>{// Success removing the file.
vm.set("resultMessage","File successfully deleted!");}).catch((err)=>{console.log(err.stack);});
Removing a Folder
JavaScript
TypeScript
// Remove a folder and recursively its content.
myFolder.remove().then((fres)=>{// Success removing the folder.
vm.set("resultMessage","Folder successfully deleted!");}).catch((err)=>{console.log(err.stack);});
// Remove a folder and recursively its content.
myFolder.remove().then((fres)=>{// Success removing the folder.
vm.set("resultMessage","Folder successfully deleted!");}).catch((err)=>{console.log(err.stack);});
Clearing the Contents of a Folder
JavaScript
TypeScript
myFolder.clear().then((res)=>{// Successfully cleared the folder.
vm.set("resultMessage","Folder successfully cleared!");}).catch((err)=>{console.log(err.stack);});
myFolder.clear().then((res)=>{// Successfully cleared the folder.
vm.set("resultMessage","Folder successfully cleared!");}).catch((err)=>{console.log(err.stack);});
Normalize a Path
JavaScript
TypeScript
let documentsFolder = fileSystemModule.knownFolders.documents();const currentAppFolder = fileSystemModule.knownFolders.currentApp();const tempFolder = fileSystemModule.knownFolders.temp();const testPath ="///test.txt";// Get a normalized path such as <folder.path>/test.txt from <folder.path>///test.txt
vm.set("documents", fileSystemModule.path.normalize(documentsFolder.path+ testPath));
vm.set("currentApp", fileSystemModule.path.normalize(currentAppFolder.path+ testPath));
vm.set("temp", fileSystemModule.path.normalize(tempFolder.path+ testPath));
let documentsFolder: Folder =<Folder>knownFolders.documents();const currentAppFolder = knownFolders.currentApp();const tempFolder = knownFolders.temp();const testPath:string="///test.txt";// Get a normalized path such as <folder.path>/test.txt from <folder.path>///test.txt
vm.set("documents", path.normalize(documentsFolder.path + testPath));
vm.set("currentApp", path.normalize(currentAppFolder.path + testPath));
vm.set("temp", path.normalize(tempFolder.path + testPath));
Path Join
JavaScript
TypeScript
// Generate a path like <documents.path>/myFiles/test.txt
documentsFolder = fileSystemModule.knownFolders.documents();const filePath = fileSystemModule.path.join(documentsFolder.path,"myFiles","test.txt");
// Generate a path like <documents.path>/myFiles/test.txt
documentsFolder =<Folder>knownFolders.documents();const filePath:string= path.join(documentsFolder.path,"myFiles","test.txt");
Get the Path Separator
JavaScript
TypeScript
// An OS dependent path separator, "\" or "/".const separator = fileSystemModule.path.separator;
// An OS dependent path separator, "\" or "/".const separator = path.separator;
Get or Create a File With Path
JavaScript
TypeScript
const documentsFolder = fileSystemModule.knownFolders.documents();const path = fileSystemModule.path.join(documentsFolder.path,"FileFromPath.txt");const file = fileSystemModule.File.fromPath(path);// Writing text to the file.
file.writeText(vm.get("textContentToBeSaved")).then((result)=>{// Succeeded writing to the file.
file.readText().then((res)=>{// Succeeded read from file.
vm.set("isContentSaved",true);
vm.set("savedContent", res);console.log(`File content: ${res}`);});}).catch((err)=>{console.log(err.stack);});
const documentsFolder: Folder =<Folder>knownFolders.documents();const filePath:string= path.join(documentsFolder.path,"FileFromPath.txt");const file: File = File.fromPath(filePath);// Writing text to the file.
file.writeText(vm.get("textContentToBeSaved")).then((result)=>{// Succeeded writing to the file.
file.readText().then((res)=>{// Succeeded read from file.
vm.set("isContentSaved",true);
vm.set("savedContent", res);console.log(`File content: ${res}`);});}).catch((err)=>{console.log(err.stack);});
Getting all folder entities in array may be slow with large number of files.
Enumerating the folder entities would iterate the files one by one without blocking the UI.
JavaScript
TypeScript
documents = fileSystemModule.knownFolders.documents();
documents.getEntities().then((entities)=>{// entities is array with the document's files and folders.
entities.forEach((entity)=>{
array.push({
name: entity.name,
path: entity.path,
lastModified: entity.lastModified.toString()});});}).catch((err)=>{// Failed to obtain folder's contents.console.log(err.stack);});
documents = knownFolders.documents();
documents.getEntities().then((entities)=>{// entities is array with the document's files and folders.
entities.forEach((entity)=>{
array.push({
name: entity.name,
path: entity.path,
lastModified: entity.lastModified.toString()});});}).catch((err)=>{// Failed to obtain folder's contents.console.log(err.stack);});
Deletes all the files and folders (recursively), contained within this Folder.
clearSync(onError?: function)
void
Deletes all the files and folders (recursively), contained within this Folder synchronously.
contains(name: string)
boolean
Checks whether this Folder contains an Entity with the specified name. The path of the folder is added to the name to resolve the complete path to check for.
eachEntity(onEntity: function)
any
Enumerates all the top-level FileSystem entities residing within this folder.
getEntities
Promise<Array<FileSystemEntity>>
Gets all the top-level entities residing within this folder.
getEntitiesSync(onError?: function)
Array<FileSystemEntity>
Gets all the top-level entities residing within this folder synchronously
getFile(name: string)
File
Gets or creates a File entity with the specified name within this Folder.
getFolder(name: string)
Folder
Gets or creates a Folder entity with the specified name within this Folder.
remove
Promise<any>
Removes (deletes) the current Entity from the file system.
removeSync
removeSync(onError?: function)
Removes (deletes) the current Entity from the file system synchronously.
Gets the root folder for the current application. This Folder is private for the application and not accessible from Users/External apps. iOS - this folder is read-only and contains the app and all its resources.
documents
Folder
Gets the Documents folder available for the current application. This Folder is private for the application and not accessible from Users/External apps.
temp
Folder
Gets the Temporary (Caches) folder available for the current application. This Folder is private for the application and not accessible from Users/External apps.