I am not sure whether is this call dynamic path. but what i want to do is to make a directory that is at the root of the C# file.
because when i search for directory if i put
if (File.Exists(@"D:\hello.txt"))
{
Download(@"/root", 0, 0, 0, -1, 0, true);
}
else
{
}
what if the computer does not have D driver. so i want to make a dynamic path which is at the root of the C#.
thank you.