You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to set up the Labrecorder to store recordings to C:\Recordings\exp_%p_%b.xdf (running Windows 10 OS)
When i set the storageLocation in the config File to:
StorageLocation="C:\Recordings\exp_%p_%b.xdf"
the result is that LabRecorder simply ignores the Recordings Subfolder and saves the File directly to C:
The only way to get it to save to the correct Folder is to add a (nonexistent) subfolder to the Storage Location:
StorageLocation="C:\Recordings\xyz\exp_%p_%b.xdf"
Now it again ignores the last subfolder before the FIleName and saves to the intended Location.
I don't think this is the intended behaviour. Am i doing something wrong?
I haven't investigated yet, but it's either in parsing the storage location somewhere around here or buildFilename or when starting recording here.
The text was updated successfully, but these errors were encountered:
The bug was that the StorageLocation path-part first went through a Path() op then another AbsolutePath()... and (I think) each one trims off the end and gives the parent. So this resulted in parent-of-parent. In the fix, the first Path() was removed and only one call to AbsolutePath() is kept.
From a user in Slack:
I haven't investigated yet, but it's either in parsing the storage location somewhere around here or
buildFilename
or when starting recording here.The text was updated successfully, but these errors were encountered: