format
typescript
DataLibrary.ClearFiles()class: DataLibrary
description
Clears all data.
parameter
| param_name | type | description |
|---|
reture
| type | description |
|---|---|
void |
code example
typescript
let library = DataLibrary.projectLibrary;
let key = "testdata";
let content = "abcdefg";
// Set data
library.SetData(key,content);
library.ClearFiles();