using System;
public class Program
{
public static void Main()
string path = string.Empty;
do
Console.Write("Insert the path in oder to export data: ");
path = Console.ReadLine();
}
while (String.IsNullOrEmpty(path));
Console.WriteLine(path);