- File_isDir
- File_isEmpty
- File_isExecutable
- File_isExist
- File_isFile
- File_isReadable
- File_isSame
- File_isSymlink
- File_isWritable
- File_notEmpty
check if the given path is a directory
- path <string>
File_isDir "~/Desktop"
check if the given path is a empty file
- path <string>
File_isEmpty "foo.sh"
check if the given path is executable
- path <string>
File_isExecutable "foo.sh"
check if the given path exists
- path <string>
File_isExist "foo.sh"
check if the given path is a file
- path <string>
File_isFile "foo.sh"
check if the given path is readable
- path <string>
File_isReadable "foo.sh"
check if the given paths are the same file
- path1 <string>
- path2 <string>
File_isSame "foo.sh" "~/Desktop/foo.sh"
check if the given path is a symbolic link
- path <string>
File_isSymlink "foo.sh"
check if the given path is writable
- path <string>
File_isWritable "foo.sh"
check if the given path is not a empty file
- path <string>
File_notEmpty "foo.sh"