Hi,
In the following code, I drag into the window a text file, but if the file name contains a space, then the name is not inserted correctly into path string.

What is the problem?

If the text file name contains no spaces, then it is read OK into path.

public static void Main(string[] args)
{
string path, pathString2;

if (args.Length == 0)
{
Console.WriteLine("please drag the txt file to the console\n");
path = Console.ReadLine();
}