dkwokgs 0 Posted September 6, 2007 Hi There, Is there a way in Autoit or vbs to locate full file/dir length more that 256 of whole vol. and output to a file(txt)? Please advise. Thanks Share this post Link to post Share on other sites
PsaltyDS 41 Posted September 6, 2007 Hi There,Is there a way in Autoit or vbs to locate full file/dir length more that 256 of whole vol. and output to a file(txt)?Please advise. ThanksYou need to do a recursive search function to list every file, using StringLen() to check the length of the path string. Do you have any code yet? There are many examples of recursive searches on the forum. Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law Share this post Link to post Share on other sites
randallc 0 Posted September 6, 2007 full file/dir length more that 256 of whole vol.wat does that mean? - maybe example of such a directory? - do you mean length of filename??Best, randall ExcelCOM... AccessCom.. Word2... FileListToArrayNew...SearchMiner... Regexps...SQL...Explorer...Array2D.. _GUIListView...array problem...APITailRW Share this post Link to post Share on other sites
dkwokgs 0 Posted September 6, 2007 Oh. I want to scan for a file server and check for files/directory that are more that 255 in total length of the path...if not if I do a copy on those files to another NAS it will fail. Share this post Link to post Share on other sites
PsaltyDS 41 Posted September 6, 2007 Here is _FileListToArrayEx() by SmOke_N.This is _RegSearch() by some rakishly good looking flightless antarctic water fowl.They both demonstrate a recursive technique, and there are MANY more examples on this forum.Between the two, you could tweak SmOke_N's the easiest to return only files where StringLen($FilePath) > 256. Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law Share this post Link to post Share on other sites