Metadata-Version: 2.1
Name: movefiletoextensionfolder
Version: 1.0.2
Summary: It will move all files in the source path to their respective ext folder in destination path provided
Home-page: https://github.com/bhaskarkh/movefiletoextensionfolder
Author: kumar bhaskar
Author-email: bhaskar646@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
Requires-Dist: pyttsx3 (==2.6)

# Move files from source Folder to provided destination folder 
It will organise all files in source folder according to the extenstion
of file,
like all jpg will be in one folder all pdf will in one folder.

## Installation

```pip install movefiletoextensionfolder```

## How to use it?
```
from movefiletoextensionfolder import movefile as mf

source_folder_path = r'C:\Users\bhask\Downloads' + '\\'
target_folder_path = r'C:\Users\bhask\Downloads'
successvoicemsg="Hi Bhaskar all files moved Succesfully" 

mf.movefilefromsourcetodestination(source_folder_path,target_folder_path,successvoicemsg)
```

## License

Â© 2021 kumar bhaskar

This repository is licensed under the MIT license. See LICENSE for details.


