Erlang – list_to_atom
In this guide, we will discuss Erlang list_to_atom. This method is used to convert a list item to an atom. Syntax list_to_atom(listvalue) Parameters listvalue − This is the list value which…
In this guide, we will discuss Erlang list_to_atom. This method is used to convert a list item to an atom. Syntax list_to_atom(listvalue) Parameters listvalue − This is the list value which…
In this guide, we will discuss Erlang atom_to_list. This method is used to convert an atom to a list. Syntax Atom_to_list(atom) Parameters atom − This is the atom which needs to…
In this guide, we will discuss Erlang is_atom. This method is used to determine if a term is indeed an atom. Syntax is_atom(term) Parameters term − This is the term value…
In this guide, we will discuss Erlang Atoms. An atom is a literal, a constant with name. An atom is to be enclosed in single quotes (') if it does…
In this guide, we will discuss Erlang is_dir. This method is used to determine if a directory is indeed a directory. This method is a part of the filelib library.…
In this guide, we will discuss Erlang is_file. This method is used to determine if a file is indeed a file. This method is a part of the filelib library.…
In this guide, we will discuss Erlang file_size. This method is used to determine the size of the file. This method is part of the filelib library. Syntax file_size(filename) Parameters filename − This…
In this guide, we will discuss Erlang rename. This method is used to rename an existing file. Syntax rename(oldfilename,newfilename) Parameters oldfilename − This is the original file name.newfilename − This is the…
In this guide, we will discuss Erlang make_dir. This method is used to create a new directory. Syntax make_dir(directory) Parameters directory − This is the name of the directory which needs…
In this guide, we will discuss Erlang list_dir. This method is used to list down the contents of a particular directory. Syntax list_dir(directory) Parameters directory − The directory for which the…