Skip to content
/ bdff Public

Make Build and initiates default folders directories and files.

Notifications You must be signed in to change notification settings

sromexs/bdff

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation


bdff

bdff

Make Build and initiates default folders directories and files.

Make Initial Folders

with this simple code you can make folders and directories easily. this package first checks if directory is exists or not if not exists makes directory. You can input list of folders that you want to create by array.

bdff.mkdir(["Test", "Test/Inner", "Test/Inner2"]);

// Created Directories :
// Test/
// Test/Inner/
// Test/Inner2/

You can just input single string and make single directory.

bdff.mkdir("WithString");

// Created Directories :
// WithString/

Make Initial Files

This package cheks if given file does not exists and creates file with default value.

bdff.writeFile([
  {
    name: "Test/array.json",
    data: JSON.stringify([]),
  },
  {
    name: "Test/file.txt",
    data: "Simple Text",
  },
]);

// Created Files :
// Test/array.json => []
// Test/file.txt => Simple Text

You can use this method by one object.

bdff.writeFile({
  name: "Test/singleObject.json",
  data: JSON.stringify({}),
});

// Created Files :
// Test/singleObject.json => {}