R&S PR100 User Manual
MMEMory
. :DATA <file_name>, <block_data>
Creates a new file, or overwrites an existing one, with the name <file_name>,
and fills it with the binary data in <block_data>
Parameters:
<file_name> file: String of characters (comma not allowed)
<block_data> block data
Example:
MMEMory:DATA “test.txt”, #15hello
MMEMory
. : DATA? <file_name>
Outputs the contents of the file <file_name> as block data. In case
<file_name> does not exist, an error is generated: .-292, “Referenced name
does not exist”.
Parameters:
<file_name> file: String of characters (comma not allowed)
Result:
<block_data> of file contents
Example:
MMEMory:DATA? “test.txt” -> #15hello
MMEMory
. :DELete < name>
Removes the file <name> from the current folder of the mass storage device.
In case <name> does not exist, an error is generated: .-292, “Referenced
name does not exist”.
Parameters:
<name> String of characters (comma not allowed)
Example:
MMEMory:DELete “file”