You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

14 lines
320 B

import * as config from '../config'
import * as fs from 'fs';
export function checkDataFolders() {
if(fs.existsSync(config.DATA_PATH)) {
return;
}
fs.mkdirSync(config.DATA_PATH);
fs.mkdirSync(config.ANOMALIES_PATH);
fs.mkdirSync(config.SEGMENTS_PATH);
fs.mkdirSync(config.METRICS_PATH);
}