Skip to content

thitlwincoder/name_plus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Name Plus

pub package Last Commits GitHub repo size License
Uploaded By

Automatically increment File & Directory name and create.

Usage

create File with extension

File('path').namePlus('filename');

File('path').namePlusSync('filename');

create Directory with extension

Directory('path').namePlus('filename');

Directory('path').namePlusSync('filename');

Options

When creating a File or Directory, you can pass some options:

File('path').namePlus(
  'filename',
  format: '(d)', // change increment number format
  space: false, // space between name & number format
);

Documentation

Check test.txt file name from example folder path and then name not exist create test.txt or name is already exist create with default format test 1.txt

File('example').namePlus('test.txt');
// test 1.txt

If you use format option, d is number place.

File('example').namePlus('test.txt', format: '(d)');
// test (2).txt

File('example').namePlus('test.txt', format: '{d}');
// test {3}.txt

Contribution

Feel free to file an issue if you find a problem or make pull requests.

All contributions are welcome :)

About

Automatically increment File & Directory name and create

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages