Company Events Academic NI Developer Zone Support Solutions Products & Services Contact NI MyNI

fgetl (MathScript Function) (Windows, Not in Base Package)

LabVIEW 8.5 Help
August 2007

NI Part Number:
371361D-01

»View Product Info

Member of the support class.

Syntax

a = fgetl(fid)

Description

Reads a line from a file. To read a line from a byte stream file, you must use this function.

Examples

Inputs

Name Description
fid Specifies the identifier for the file you want to read. Use the fopen function to open a file and assign it an identifier. fid is an integer.

Outputs

Name Description
a Returns the string LabVIEW reads from the file you specify in fid.

Examples

Make sure the file Test.m exists in the MathScript search path.

fid = fopen('Test.m');
s = fgetl(fid)
fclose(fid);

Related Topics

fclose
fgets
fopen


Resources


 

Your Feedback! poor Poor  |  Excellent excellent   Yes No
 Document Quality? 
 Answered Your Question? 
Add Comments 1 2 3 4 5 submit