Interactive SourceMeter® Instrument Reference Manual Section 8:
2450-901-01 Rev. B/September 2013 8-59
file.mkdir()
This function creates a directory at the specified path on the USB flash drive.
Type TSP-Link accessible
Affected by Where saved Default value
Usage
file.mkdir(path)
The path of the directory
Details
The directory path must be absolute.
Example
Create a new directory named
.
Also see
None
file.open()
This function opens a file on the USB flash drive for later reference.
Type TSP-Link accessible
Affected by Where saved Default value
Usage
fileNumber = file.open(fileName, accessType)
A number identifying the open file that you use with other file commands to write,
read, flush, or close the file after opening
The file name to open, including the full path of file
The type of action to do:
• Append the file: file.MODE_APPEND
• Read the file: file.MODE_READ
•
Write to the file: file.MODE_WRITE
Details
The path to the file to open must be absolute.