enumerate-files-folders

how to enumerate files + folders recursively with System.IO.Directory.GetFiles

How to change this code to also enumerate sub directories var fqFilenames= new List<String>(System.IO.Directory.GetFiles(sMappedPath)); var filenames= fqFilenames.ConvertAll((s) => { return s.Replace(sMappedPath+"\\", ""); }); FileListView.DataSource = filenames; ...

Vbscript - Checking each subfolder for files and copy files

I'm trying to get this script to work. It's basically supposed to mirror two sets of folders and make sure they are exactly the same. If a folder is missing, the folder and it's content should be copied. Then the script should compare the DateModified attribute and only copy the files if the source file is newer than the destination f...