aboutsummaryrefslogtreecommitdiff
path: root/src/systemLevelInformation.ts
blob: 43edcc9399854879c6a8937341e47fbbb5a4a126 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import * as os from 'os';
import * as glob from 'glob';
import { statSync, readdirSync } from 'fs';
import { extname, basename } from 'path';

class systemLevelInformation {

    getUserInfo(): { username: string, homedir: string, platform: string } {
        return {
            username: os.userInfo().username,
            homedir: os.userInfo().homedir,
            platform: os.platform()
        };
    }

    getAllFilesOfDirectory(currentDirectory): { files: string[], directories: string[] } {
        const currentFilteredItems: string[] = readdirSync(currentDirectory).filter((item: string) => item.indexOf(".") !== 0);
        const files: string[] = [];
        const directories: string[] = [];

        currentFilteredItems.forEach((item: string) => {
            if (statSync(`${currentDirectory}/${item}`).isDirectory()) {
                directories.push(item);
            } else {
                files.push(item);
            }
        });

        return { files, directories };
    }

}

export default new systemLevelInformation;