• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

I need a utility to create a file listing...

I think you could come up with a way to parse the vbproj or csproj files to get a file listing based on what is in the XML there.

If that isn't what you're looking for, you could navigate through the directories and subdirectories of a given folder and display each filename based on the code of this article...

http://www.devsource.com/article2/0,1895,2122854,00.asp

It might work something like this (I have not tried this code, just a quick copy and paste modification from the article code)...

string[] Dirs = Directory.GetDirectories(@"C:\");
for (int i = 0; i < Dirs.Length; i++)
{
//Console.WriteLine(Dirs);
string[] Files =
Directory.GetFiles( @"" + Dirs, "*.* ");
for (int k = 0; k < Files.Length; k++)
{
Console.WriteLine(Files[k]);
}

}
 
Back
Top