'How to check if directory on path is empty?

How to check in Go if folder is empty? I can check like:

files, err := ioutil.ReadDir(*folderName)
if err != nil {
    return nil, err
}

// here check len of files 

But it kinda looks to me that there should be more a elegant solution.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source