MCPcopy Create free account
hub / github.com/AutoHotkey/AutoHotkey / _Length

Method _Length

source/TextIO.cpp:697–702  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

695}
696
697__int64 TextFile::_Length() const
698{
699 LARGE_INTEGER size;
700 GetFileSizeEx(mFile, &size);
701 return size.QuadPart;
702}
703
704
705// FileObject: exports TextFile interfaces to the scripts.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected