ftell
📝 Syntax
📥 Input argument
📤 Output argument
📄 Description
💡 Example
TXT = 'example about ftell.';
fileID = fopen([tempdir(), 'ftell.txt'],'wt');
fprintf(fileID, TXT);
p1 = ftell(fileID)
fseek(fileID, SEEK_CUR, 'bof');
p2 = ftell(fileID)
status = fclose(fileID);🔗 See also
🕔 History
Version
📄 Description
Last updated