MatteoGuallini Posted April 3, 2008 Posted April 3, 2008 hi to all, _FileListToArray doesn't run if the Parh is the "Temporary Internet Files" For example; $TemporaryInternetFiles=@UserProfileDir&"\Impostazioni locali"&"\Temporary Internet Files" $files=_FileListToArray ($TemporaryInternetFiles) This code doesn't gives me the array with all the files contained in "Temporary Internet Files". WHY? http://www.vigevano-prabis.it/
covaks Posted April 3, 2008 Posted April 3, 2008 Works for me. Keeping in mind that Temporary Internet files are not actually stored in that folder, but in the CONTENT.IE5\<random string> folders. #include <File.au3> #include <Array.au3> $TemporaryInternetFiles=@UserProfileDir&"\Local Settings"&"\Temporary Internet Files" $files=_FileListToArray ($TemporaryInternetFiles) _ArrayDisplay($files)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now