I have to check, if directory on disk is empty. It means, that it does not contain any folders/files. I know, that there is a simple method. We get array of FileSystemInfo\'
You could try Directory.Exists(path) and Directory.GetFiles(path) - probably less overhead (no objects - just strings etc).
Directory.Exists(path)
Directory.GetFiles(path)