Packages

A tool for extracting and processing information from various file formats, including CSV, JSON, and XML.

Current section

Files

Jump to
file_crusher lib file_crusher.ex
Raw

lib/file_crusher.ex

defmodule FileCrusher do
@moduledoc """
Documentation for FileCrusher.
"""
@doc """
Hello world.
## Examples
iex> FileCrusher.hello()
:world
"""
def hello do
:world
end
def get_file_extension(file_path) do
Path.extname(file_path)
end
end