The following examples will show you how to list all of the files in a folder and sub folder.
static void GetFilesInFoldersAndSubFolders(Args _args)
{
System.String[] filePaths = System.IO.Directory::GetFiles(@"folder location", "*.*", System.IO.SearchOption::AllDirectories); //get listing of all files within the folder
int fileCount = filepaths.get_Length(); //get how many files were found
int currentFileCount;
//go throw each one of the files that were found
for(currentFileCount = 0; currentFileCount < fileCount ; ++currentFileCount)
{
info(filepaths.GetValue(currentFileCount));
}
}
No comments:
Post a Comment