02-14-2018, 08:02 AM
|
#1 | |
|
Human being with feelings
Join Date: Apr 2013
Location: France
Posts: 11,147
|
Hi,
It seeùs that the EnumerateFiles cache file list for each subfolder. This means that if you os.rename so file, you will not see the file list change, even if you recall EnumerateFiles . Here is a sample code: Quote:
![]() But note that the files do change, it is just the EnumerateFiles which stay the same. Here is test code from cfillion; ![]() I would have expect EnumerateFiles to NOT cache the result, and let the coder cache it by himself and use virtual folder structure if he want (surely faster), at least as an optional argument, as it is a bit unexpected (and undocumented) behavior. Thanks !
__________________
Free ReaScripts - Premium Scripts - Custom Scripts Dev - Learn ReaScript - XR Theme - Stash Files - ReaLinks - ReaComics - Donation |
|
|
|
02-14-2018, 06:12 PM
|
#2 |
|
Human being with feelings
Join Date: Apr 2013
Location: France
Posts: 11,147
|
According to cfillion test, the cache last 17 ticks (approx 500ms).
__________________
Free ReaScripts - Premium Scripts - Custom Scripts Dev - Learn ReaScript - XR Theme - Stash Files - ReaLinks - ReaComics - Donation |
|
|
01-05-2021, 01:55 AM
|
#3 |
|
Human being with feelings
Join Date: Sep 2019
Posts: 1,608
|
This is true for reaper.EnumerateSubdirectories as well
When checking if a directory has been created immediately afterwards it's not registered and not getting listed in the output. Can be cured with Code:
local t_point = reaper.time_precise() repeat until reaper.time_precise() - t_point > 0.5 Last edited by Buy One; 01-05-2021 at 02:03 AM. |
|
|
01-05-2021, 07:08 AM
|
#4 |
|
Human being with feelings
Join Date: May 2017
Location: Somewhere over the Rainbow
Posts: 6,966
|
Yeah. The reason, why my GetProjectStateChunk-function fails often.
The update latency can be much longer than 500ms. Sometimes waiting 20 seconds isn't enough.
__________________
Use you/she/her.Ultraschall-Api Lua Api4Reaper - ReaGirl - a GuiLib for guis working for blind people |
|
|
01-06-2021, 05:05 PM
|
#5 |
|
Administrator
Join Date: Jan 2005
Location: NYC
Posts: 16,810
|
To clear the cache, you can scan a different path. Unfortunately there's a bug in the caching logic where the other path has to be valid (oops). So, we'll be fixing the caching logic, and also adding an additional thing where passing idx=-1 will invalidate the cache.
|
|
|
01-06-2021, 05:15 PM
|
#6 |
|
Administrator
Join Date: Jan 2005
Location: NYC
Posts: 16,810
|
|
|
|
01-21-2021, 08:46 AM
|
#7 | |
|
Human being with feelings
Join Date: Sep 2019
Posts: 1,608
|
Should be fixed in build 6.20
from the change log Quote:
Last edited by Buy One; 04-25-2021 at 01:42 PM. |
|
|
|
01-21-2021, 10:17 AM
|
#8 |
|
Human being with feelings
Join Date: May 2017
Location: Somewhere over the Rainbow
Posts: 6,966
|
It is and works like a charm.
One needs to include an additional functioncall of it, where the index=-1 to make it work.
__________________
Use you/she/her.Ultraschall-Api Lua Api4Reaper - ReaGirl - a GuiLib for guis working for blind people |
|
|
01-21-2021, 11:33 AM
|
#9 | |
|
Human being with feelings
Join Date: Apr 2013
Location: France
Posts: 11,147
|
Quote:
Whatfor ? -- Thanks for the fix !!
__________________
Free ReaScripts - Premium Scripts - Custom Scripts Dev - Learn ReaScript - XR Theme - Stash Files - ReaLinks - ReaComics - Donation |
|
|
|
01-21-2021, 02:58 PM
|
#10 |
|
Human being with feelings
Join Date: May 2017
Location: Somewhere over the Rainbow
Posts: 6,966
|
To clear the cache before reenumerating the folder/files. Otherwise it will have the old behavior, as far as I understood.
__________________
Use you/she/her.Ultraschall-Api Lua Api4Reaper - ReaGirl - a GuiLib for guis working for blind people |
|
|
01-21-2021, 03:43 PM
|
#11 |
|
Human being with feelings
Join Date: Apr 2013
Location: France
Posts: 11,147
|
@meo-mespotine
I dont understand, the new functions precisely does that, invalidate the cache so the directory can be rescanned.
__________________
Free ReaScripts - Premium Scripts - Custom Scripts Dev - Learn ReaScript - XR Theme - Stash Files - ReaLinks - ReaComics - Donation |
|
|
01-21-2021, 04:22 PM
|
#12 |
|
Human being with feelings
Join Date: May 2017
Location: Somewhere over the Rainbow
Posts: 6,966
|
Only, if you set file/dirindex to -1.
It's described in the docs that way. And they are actually quite old. They just got enhanced. Edit: For a get all resource path-files function, you would add one more line, the one that refreshes the cache(index -1). After that, you can be sure, that you always get the most recent files in the folder available. Same goes for EnumerateSubdirectories(). Code:
function GetAllResourcePathFiles()
reaper.EnumerateFiles(reaper.GetResourcePath(), -1) -- refresh the cache,
-- after this, the filelist will be updated
-- to the most recent one
-- get all current files in resourcepath
local index=0
local filelist={}
while reaper.EnumerateFiles(reaper.GetResourcePath(), index)~=nil do
filelist[index+1]=reaper.EnumerateFiles(reaper.GetResourcePath(), index)
index=index+1
end
return index, filelist
end
A,B=GetAllResourcePathFiles()
So the next should refresh the cache on older Reaper versions than 6.20: Code:
function GetAllFilenamesInPath(path)
-- let's refresh the folder by enumerating a file in a different folder
reaper.EnumerateFiles(reaper.GetResourcePath(), 1) -- read first file of resource-path;
-- to avoid the fact, that the last directory could be the resource-path used by the scripter outside this function,
-- let's enumerate a different file in a different folder as well to refresh the cache definitely
reaper.EnumerateFiles(reaper.GetResourcePath().."/ColorThemes", 1) -- read first file of resource-path;
-- now, the cache is using the ColorThemes-folder.
-- So if we change it again to scriptpath in our example, Reaper will refresh the cache again to the latest one
local index=0
local filelist={}
while reaper.EnumerateFiles(path, index)~=nil do
filelist[index+1]=reaper.EnumerateFiles(path, index)
index=index+1
end
return index, filelist
end
A,B=GetAllFilenamesInPath(reaper.GetResourcePath().."/Scripts")
It's important, that the paths exist, when you do the two lines to refresh the cache.
__________________
Use you/she/her.Ultraschall-Api Lua Api4Reaper - ReaGirl - a GuiLib for guis working for blind people Last edited by Meo-Ada Mespotine; 01-21-2021 at 04:42 PM. |
|
|
![]() |
| Thread Tools | |
|
|