Knowledge Base

Snippets

04

object objFSO;
SetobjFSO = Server.CreateObject("Scripting.FileSystemObject");
// Get the folder object associated with the directory
object objFolder;
SetobjFolder = objFSO.GetFolder("C:\\VitualDomains\\wwwroot");
lblOutput.Text = "The files found in " + objFolder.Name + ":<br>";
object objFile;
foreach (objFile in objFolder.Files)

{
lblOutput.Text += objFile.Name + "<br>";
}
// Clean up!
SetobjFolder = null;
SetobjFile = null;
SetobjFSO = null;

Posted in: C Sharp - C#

Comments

There are currently no comments, be the first to post one!

Post Comment

Only registered users may post comments.