public void CreateFolderPathIfNotExist_GivenFolderName_ExpectTrue()
        {
            string userFolder = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
            string folderPath = Path.Combine(userFolder, "MyTestFolder");
            bool   r          = FileSystemHelper.CreateFolderPathIfNotExist(folderPath);

            Assert.True(r);
        }