private Task FileCopy(string sourceFile, string destinationFile)
        {
            try
            {
                File.Copy(sourceFile, destinationFile, true);
            }
            catch (Exception exception)
            {
                _state.Log(nameof(VerifyCursorCommandHandler), exception);
            }

            return(Task.CompletedTask);
        }