Metadata-Version: 2.4
Name: INTCF
Version: 0.1.0
Summary: A Python module that will create the file provided if it doesn'	 exist. 
Author: cocoa
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-python
Dynamic: summary

# INTCF

INTCF is short for "If Not Then Create File".

# Purpose

INTCF checks if the file path passes exists, and if not, it will create the file.

# Example

import intcf

path = "C:\\Users\\Admin\\Desktop\\Example.txt"

output = intcf.main(path) (optional if you want print)
print(output) (optional if you want print)

intcf.main(path) (Do this if you dont want output)
