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

How To Use C++ To Get And Set Current Directory 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 allow users to edit, extract, get and set drive name, directory name, file name, and file extensions. These methods are combined in Vcl.FileCtrl, System.IOUtils,  System.SysUtils libraries. These all methods are easy to…
Read more
C++C++11C++14C++17Introduction to C++Learn C++

Everything You Need To Use auto_ptr Smart Pointer in C++

In computers, all data and operations during runtime are stored in the memory of our computers, IoTs, or in other microdevices. This memory is generally a RAM (Random Access Memory) that allows data items to be read or written in almost the same amount of time, irrespective of the physical location of data inside the memory. This post will walk you through static and dynamic memory allocation…
Read more
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 Routinesthat allows user to edit, extract, get and set drive name, directory name, file name, file extensions. .. etc, and these methods are combined inVcl.FileCtrl, System.IOUtils, System.SysUtils libraries. These all…
Read more
C++Introduction to C++Language FeatureLearn C++

How To Extract The File Directory Name From A File Path In C++

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…
Read more