Home > Software engineering >  How to check for any files with FileExists(String) method
How to check for any files with FileExists(String) method

Time:10-24

I'm trying to automate a document handling process, and I need to check if there are any files inside a certain folder. The process itself removes the files from the folder once it finishes, so I need it to loop back and check if there are any files left.

So far I've been using a sample file like this:

File.Exists("C:\Users\gcaor\Desktop\OC\150.pdf")

150.pdf is the sample file it's searching for, but is there a way to search for any file at all? So that it returns true if there is a file in the folder and false if there isn't

CodePudding user response:

You can use Directory.EnumerateFiles Any:

Dim anyFileExist = Directory.EnumerateFiles(path).Any()

This is using standard .NET methods and also stops at the first file found.

  • Related