Function isHidden

Check if path is hidden

bool isHidden (
  string path
);

Example

version (Posix)
{
    assert(!isHidden("path/to/normal_file"));
    assert(isHidden("path/to/.hidden_file"));
}