Metadata-Version: 2.1
Name: file-notes
Version: 0.0.2.dev0
Summary: file-notes can add note information to the file. It works with Python 3.6+.
Home-page: https://github.com/flyerjia/file-notes
License: MIT
Keywords: file note,script
Author: Flyer-Jia
Author-email: flyerjia@outlook.com
Requires-Python: >=3.6,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Project-URL: Repository, https://github.com/flyerjia/file-notes
Description-Content-Type: text/markdown

## file-notes
file-notes can add note information to the file. It works with Python 3.6+.

## Installation
```
pip install file-notes
```

## Usage
Command
```
fn [-l|-al|-a|-u|-d] [file_or_dir] [note]
```
Show all file information
```
fn -l
```
Show all file information including hidden files
```
fn -al
```
Add a note to a file
```
fn -a file_or_dir_name 'note'
```
Update a file's note
```
fn -u file_or_dir_name 'new note'
```
Delete a file's note
```
fn -d file_or_dir_name
```
