Owning Class: support
Requires: MathScript RT Module
setfileproperty(file, objname, objtype, name, value)
Sets a property value in a binary measurement file (.tdm or .tdms), a channel, or a channel group you specify. (Mac OS X and Linux) You cannot use this function with binary measurement files (.tdm or .tdms).
| Name | Description | ||||||
|---|---|---|---|---|---|---|---|
| file | Specifies the path to the file of which you want to set a property value. If file is a relative path, LabVIEW begins searching for the file in the current working directory. file is a string. | ||||||
| objname | Specifies the name of the channel or channel group. If objtype is 'file', objname can be empty. objname is a string. | ||||||
| objtype | Specifies whether to set the property value in a file, a channel, or a channel group. objtype is a string that accepts the following values.
|
||||||
| name | Specifies the name of the property to set. name is a string. | ||||||
| value | Specifies the property value to set in the file, channel, or channel group. |
If you use this function in a stand-alone application or shared library and file is a relative path, LabVIEW searches for the file in the path where you installed the application or shared library. If file is an absolute path, LabVIEW searches for the file on the local machine or target at the specified location. (Real-Time Module) If you deploy this function to an RT target and file is a relative path, LabVIEW searches for the file in the path returned by the Default Data Directory VI.
a = 1:10;
save 'test.tdm' a;
setfileproperty('test.tdm', '', 'file', 'createdate', '01-Jan-2007');