rx: moved creating fpath (if it doesnt exist) from setting file path to at the start of acquisition when creating file. This is done here so that it does not fail if fwrite is disabled anyway. Also fixed it in documentation. Changed in documentation that the default for fwrite is disabled (#957)

This commit is contained in:
2024-09-03 17:32:01 +02:00
committed by GitHub
parent 1d4a5d6d29
commit 782c8abd9a
6 changed files with 16 additions and 14 deletions

View File

@ -1043,7 +1043,7 @@ class Detector(CppDetectorApi):
Note
----
If path does not exist, it will try to create it.
If path does not exist and fwrite enabled, it will try to create it at start of acquisition.
Example
--------
@ -1059,7 +1059,7 @@ class Detector(CppDetectorApi):
@property
@element
def fwrite(self):
"""Enable or disable receiver file write. Default is enabled. """
"""Enable or disable receiver file write. Default is disabled. """
return self.getFileWrite()
@fwrite.setter