311e43ecc1
git-subtree-dir: utility git-subtree-split: 3616fc80e5a6f6a0739d931118b7f5f3b0efa28e
11 lines
134 B
Plaintext
11 lines
134 B
Plaintext
exists = (file_path) ->
|
|
handle = io.open file_path, "r"
|
|
if handle
|
|
handle\close!
|
|
return true
|
|
return false
|
|
|
|
{
|
|
:exists
|
|
}
|