Returns the contents in the given file name as a string. The string name is the absolute path to a file or a path given by the file scheme syntax.
|
||
Returns a CsReader that can be used to read line-by-line or character-by-character from the given file name.
|
||
Returns a CsBinaryReader that can be used to read from the given file byte-by-byte.
|
||
Writes the given string contents to the given file name. If append is true, then the contents are appended instead of overwritten.
|
||
Writes the array data to the given file. The spreadsheet format is used, which means it can be read by readMatrixFromFile.
|
||
Writes the array data to the given file. The spreadsheet format is used, which means it can be read by readMatrixFromFile. If append is true, then the contents are appended instead of overwritten.
|
||
Writes the array data to the given file. The spreadsheet format is used, which means it can be read by readStringMatrixFromFile.
|
||
Writes the array data to the given file. The spreadsheet format is used, which means it can be read by readStringMatrixFromFile. If append is true, then the contents are appended instead of overwritten.
|
||
Returns a CsWriter that can write to the given file.
|
||
Returns a CsWriter that can write to the given file. If append is true, then the contents are appended instead of overwritten.
|
||
Returns a CsBinaryWriter that can be used to write to the given file byte-by-byte.
|
||
Returns a CsBinaryWriter that can be used to write to the given file byte by byte. If append is true, then the contents are appended instead of overwritten.
|
||
Writes the given string array data to a CSV file. The RFC 4180 format is used for the CSV.
|
||
Writes the given string array data to a CSV file. The RFC 4180 format is used for the CSV. If append is true, then the contents are appended instead of overwritten.
|
||
Writes the given double array data to a CSV file. The RFC 4180 format is used for the CSV.
|
||
Writes the given double array data to a CSV file. The RFC 4180 format is used for the CSV. If append is true, then the contents are appended instead of overwritten.
|
||
Tests whether a file with the given name exists.
If the name is not a file scheme path name or an absolute path, then the method first finds out whether a file with file scheme path embedded:/// + argument exists. If such a file does not exist, then it tests whether there is a file with a matching name in the current working directory.
|
||
Displays a file browser dialog box and uploads the selected file to the file declaration with the given name. After this, the uploaded file can be accessed with upload:///<name>. The optional fileTypes argument can be used to filter which file types are available for selection in the file browser. The easiest way to get a list of valid file types is to use code completion in the Method Editor.
|
||
Displays a file browser dialog box and uploads the selected file to the Filename text field in the given model object entity. This defines an input file that the application will need at a later stage. For example, the Filename of an interpolation function accessed with model.func(’<tag>’)). The uploaded file can be accessed with upload:///<tag>/filename.
|
||
Writes the given string array data starting from the first cell in the first sheet of an Excel file. This method requires LiveLink™ for Excel®.
|
||
Writes the given string array data starting from the specified cell in the specified sheet of an Excel file. This method requires LiveLink™ for Excel®.
|
||
This method can be used to pass the path to, for example, a file using the temp:/// scheme to external code or an application.
In addition, this method is used to retrieve the file name of an uploaded file when using the file scheme upload:///inputFile, for example by using a File declaration together with a File Import form object.
|
||
Creates a file directory name, see examples below in the Example Code section.
|