C
cs
foreach (string file in Directory.GetFiles(
System.Environment.GetFolderPath
(System.Environment.SpecialFolder.InternetCache)) )
{
Console.WriteLine(file.ToString());
}
I can only get the code above to list desktop.ini and no
other files. What's going on with this folder?
System.Environment.GetFolderPath
(System.Environment.SpecialFolder.InternetCache)) )
{
Console.WriteLine(file.ToString());
}
I can only get the code above to list desktop.ini and no
other files. What's going on with this folder?