pyufunc.file_remove#

pyufunc.file_remove(filename)#

Remove a file from the filesystem.

Parameters:

filename (str) – The filename of the file to remove.

Returns:

None

Example

>>> from pyufunc import remove_file
>>> remove_file("file.txt")