Add long path FileInfo/DirectoryInfo equivalents
description
Hi there, I'm a noob with c# so my apologies if it's something obvious. First thanks for creating the library it's awesome. I've managed to get all the functions to work as expected but now I need to get the file information that normally WIN32_FIND_DATA
provides when you p/invoke the findfirstfile function. The problem is that I need to analyze about 700k individual files and I don't want to p/invoke findfirstfile because after about 34k calls the my pograms starts to slow down to a crawl. Is there any function
I can use in the library that will give me the equivalent of WIN32_FIND_DATA? If not, I just need the Creation Time, File Size and Last Modiied info. If there is another way to get those using your library it would be greatly appreciated. Thank you for the
great work.