File System

SCPI.MMEMory.MDIRectory

Attribute Detail
Object Type Property (write only)
Data Type String
Target Analyzer
Description Creates a new directory (folder). Contains the full path to the folder being created.
Range up to 254 characters
Syntax app.SCPI.MMEMory.MDIRectory = Path
Equivalent Softkeys None

SCPI.MMEMory.CATalog(Dir)

Attribute Detail
Object Type Property (read only)
Data Type String
Description This command reads out the following information on the hard drive:
• Space in use
• Available space
• Name and size of all files (including directories) in the specified directory
Format: ("{A},{B},{Name 1},,{Size 1},{Name 2},,{Size 2}, ... ,{Name N},,{Size N}")
Where N is the number of all files in the specified directory and n is an integer between 1 and N.
{A}: Space in use of the hard drive (byte).
{B}: Available space of the hard drive (byte).
{Name n}: Name of the n-th file (directory).
{Size n}: Size (byte) of the n-th file (directory). Always 0 for directories.
Parameter Dir – Directory name whose information you want to read out
Syntax Dim Cat as String
Cat = app.SCPI.MMEMory.CATalog(".")
Equivalent Softkeys None

SCPI.MMEMory.COPY(Src, Dst)

Attribute Detail
Object Type Method
Target Analyzer
Description Copies a file.
Syntax app.SCPI.MMEMory.COPY(Src, Dst)
Parameter Src – Source file name. String data type.
Dst – Destination file name. String data type.
Equivalent Softkeys None

SCPI.MMEMory.DELete(File)

Attribute Detail
Object Type Method
Target Analyzer
Description Deletes a file.
Syntax app.SCPI.MMEMory.DELete(File)
Parameter File – File name. String data type.
Equivalent Softkeys None

SCPI.SYSTem.DATE

Attribute Detail
Object Type Property (read/write)
Data Type Variant (array of long)
Target Analyzer
Description The current date.
The array consists of three elements:
Data(0) year from 1900 to 2100;
Data(1) month from 1 to 12;
Data(2) day from 1 to 31.
Syntax Dim Data As Variant
Data = app.SCPI.SYSTem.DATE
app. app.SCPI.SYSTem.DATE = Array(2009, 9, 9)
Equivalent Softkeys None

SCPI.SYSTem.TIME

Attribute Detail
Object Type Property (read/write)
Data Type Variant (array of long)
Target Analyzer
Description The current time.
The array consists of three elements:
Data(0) hours from 0 to 23;
Data(1) minutes from 0 to 59;
Data(2) seconds from 0 to 59.
Syntax Dim Data As Variant
Data = app.SCPI.SYSTem.TIME
app. app.SCPI.SYSTem.TIME = Array(15, 20, 30)
Equivalent Softkeys None