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

How To Make A New Windows FMX Component In C++

One of the most powerful features of the C++ Builder is its own components that can be used with or without a visual representation. Components make programming easy, you can do many operations easily without knowing low-level coding. Every component that you drag into your forms is an object of that component class. For example TEdit is a Class Type, a Component, and Edit1 is an Object from the…
Read more
C++Introduction to C++Language FeatureLearn C++

How To Delete A Directory In C++ Builder On Windows

C++ has a lot of great libraries to operate on every case, on every item. We can create or delete directories by using System Commands that we explained before in this post, or we can use C++ standard library methods. In C++ Builder, we can use both of them and we can also use Disk And Directory Support Routines to create or remove directories. These methods are easy to remember, very…
Read more
C++Introduction to C++Language FeatureLearn C++

How To Check If A Directory On Windows Is Empty In C++?

C++ has a lot of great libraries to operate on every case, on every item. We can create or delete directories by using System Commands that we explained before in this post or we can use C++ standard library methods. In C++ Builder, we can use both of them and we can also use Disk And Directory Support Routines to create or remove directories or to get information about disks, directories, and…
Read more
C++Introduction to C++Language FeatureLearn C++

How to use SameFileName method on Windows

C++ Builder has a lot of specific methods in its SysUtils library that are included in VCL and FMX libraries. Some of these are grouped as Path Manipulation Routines that allow a user to edit, extract, get and set drive name, directory name, file name, and file extensions. These methods are combined in the Vcl.FileCtrl, System.IOUtils, System.SysUtils libraries. These methods are easy to use…
Read more