DevPerera
11 years agoOccasional Contributor
How to check whether particular Folder exists or not?
Hi All, How to check whether particular folder exsist or not. This is not about checking a file exsist or not only checking the folder. ...................... Thanks Dev
- 11 years ago
Hi Dev,
You can use aqFilleSystem.Exists():
// JScript if (aqFileSystem.Exists("C:\\MyFolder")) Log.Message("Folder exists.") else Log.Message("Folder does not exist.");