Gets the files in the folder name (job)

static void Job102(Args _args)
{
System.IO.FileInfo fInfo;
System.IO.DirectoryInfo di = new System.IO.DirectoryInfo("C:\\AOD back");

System.Collections.ArrayList al;
System.Collections.IEnumerator ie;

Boolean OK;

;
to di.GetFiles = ();
ie = al.GetEnumerator ();

while(ie.MoveNext())
{
fInfo = ie.get_Current();

info(fInfo.get_FullName());
}
}

Guess you like

Origin www.cnblogs.com/xtwkh1973/p/11654475.html