public void CheckFileExist_FilePath_ReturnTrue()
        {
            //Arrange
            var    FileProcess = new FileProcess();
            string filepath    = @"C: \Users\Sahil Sehgal\Desktop\Sahil\testfile.txt";
            //Act
            var result = FileProcess.CheckFileExist(filepath);

            //Assert
            Assert.IsTrue(result);
        }