File.fileType
Property Description |
The file type of a file. This property is read-only. You must set the file type by passing in a file.Type enum value to file.create(options). |
Type |
enum |
Module |
|
Since |
2015.2 |
Errors
Error Code |
Message |
Thrown If |
---|---|---|
|
— |
You attempt to edit this property after it is set with file.create(options). |
Syntax
Important:
The following code sample shows the syntax for this member. It is not a functional example. For a complete script example, see N/file Module Script Samples.
//Add additional code
...
var fileObj = file.load({
id: 145
});
log.debug({
details: "File Type: " + fileObj.fileType
});
...
//Add additional code