remove old style catches from the library
This removes the old style catches and replaces them with try/catch. It seems to make the code much clearer and its certainly less failure prone.
This commit is contained in:
parent
8dda138814
commit
eecbb26a2d
2 changed files with 6 additions and 5 deletions
|
@ -97,13 +97,14 @@ remove(Path) ->
|
|||
%% @doc indicates witha boolean if the path supplied refers to symlink.
|
||||
-spec is_symlink(path()) -> boolean().
|
||||
is_symlink(Path) ->
|
||||
case catch file:read_link_info(Path) of
|
||||
case file:read_link_info(Path) of
|
||||
{ok, #file_info{type = symlink}} ->
|
||||
true;
|
||||
_ ->
|
||||
false
|
||||
end.
|
||||
|
||||
|
||||
%% @doc make a unique temorory directory. Similar function to BSD stdlib
|
||||
%% function of the same name.
|
||||
-spec mkdtemp() -> TmpDirPath::path().
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue