C++Introduction to C++Language FeatureLearn C++

How To Check If a Directory Really Exists on Windows

C++ Builder has a lot of specific methods in its SysUtils library that are included in the vcl and fmx libraries. Some of these are grouped as Path Manipulation Routines that allows user to edit, extract, get and set drive name, directory name, file name, file extensions. .. etc, and these methods are combined in Vcl.FileCtrl, System.IOUtils,  System.SysUtils libraries. These all methods are easy to use and easy to get or set file path strings in that operating system. These can be used with other component properties like FileName property of OpenDialog, SaveDialog components. We can also check drives, files, or directories to see if they exist or not in that given path.

In this post, you’ll learn how to check if a directory exists in a given path; how to check if a folder exists or not in C++, and how to check a Drive, Directory, or File in C++. By learning more about the DirectoryExists Method that checks if it exists in that path on Windows, and how to compile c++ in Windows. It will help you to easily build C++ applications.

What does the C++ DirectoryExists method do?

DirectoryExists Method (System::SysUtils::DirectoryExists) is a SysUtils Method that determines whether a specified directory exists. Call DirectoryExists() to determine whether the directory specified by the Directory parameter exists. If the directory exists, the function returns True. If the directory does not exist, the function returns False. If a full path name is entered, DirectoryExists searches for the directory along the designated path. Otherwise, the Directory parameter is interpreted as a relative path name from the current directory.

What is the syntax of the C++ DirectoryExists method?

Here is the Syntax of DirectoryExists Method:

Note: If the Directory parameter is a symbolic link and the FollowLink parameter is set to True, the method is performed on the target directory. If the first condition is True, but the FollowLink parameter is set to False, the method will be performed on the symbolic link. If the link is broken, the method will always return False.

Note: The Vcl.FileCtrl unit (Windows only) also contains a DirectoryExists function. However, the Vcl.FileCtrl version is deprecated, and the System.SysUtils version is preferred and can be used in multi-device applications.


Method behavior if the Directory parameter is a directory:

Target ExistsFollowLinkMethod result
YESTrueTrue
YESFalseTrue
NOTrueFalse
NOFalseFalse


Method behavior if the Directory parameter is a symbolic link:

Target ExistsFollowLinkMethod result
YESTrueTrue
YESFalseTrue
NOTrueFalse
NOFalseTrue

A simple Example of how to use the C++ DirectoryExists method

DirectoryExist Method returns a Boolean, we can check a file and set the result to a bool as below,

or we can directly set its result to a components value, for example we can use it with a CheckBox (TCheckBox) component as below

Here’s a full example of how to use the C++ DirectoryExists method

Here is the example how we check if a directory exists or not,


As same as here above, there are a FileExists() method to check directories and DriveExists() method to check files. More examples about Path Operations can be found here and Disk and Directory Support Routines can be found here

Here is the full example about using DriveExists(), DirectoryExists() and FileExists() Methods,

C++ Builder is the easiest and fastest C and C++ IDE for building simple or professional applications on the Windows, MacOS, iOS & Android operating systems. It is also easy for beginners to learn with its wide range of samples, tutorials, help files, and LSP support for code. RAD Studio’s C++ Builder version comes with the award-winning VCL framework for high-performance native Windows apps and the powerful FireMonkey (FMX) framework for cross-platform UIs. There is a free C++ Builder Community Edition for students, beginners, and startups.

Oh hi there 👋
It’s nice to meet you.

Sign up to receive awesome C++ content in your inbox, every day.

We don’t spam! Read our privacy policy for more info.

About author

Dr. Yilmaz Yoru has 35+ years of coding with more than 30+ programming languages, mostly C++ on Windows, Android, Mac-OS, iOS, Linux, and some other operating systems. He graduated and received his MSc and PhD degrees from the Department of Mechanical Engineering of Eskisehir Osmangazi University. He is the founder and CEO of ESENJA LLC Company. His interests are Programming, Thermodynamics, Fluid Mechanics, Artificial Intelligence, 2D & 3D Designs, and high-end innovations.
Related posts
C++C++11C++14C++17C++20

What Is The Stack (std::stack) In Modern C++?

C++C++11C++14C++17C++20Learn C++

What Is The Queue (std::queue) In Modern C++?

C++C++11C++14C++17Learn C++SyntaxTemplates

What Are The Logical Operation Metafunctions In Modern C++?

C++C++14C++17C++20Learn C++

What Are The Deprecated C++14 Features In C++17?