Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion std/sys/FileStat.hx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@

package sys;

import haxe.Int64;

/**
File information, as given by `sys.FileSystem.stat`.
**/
Expand Down Expand Up @@ -54,7 +56,7 @@ typedef FileStat = {
/**
The size of the file, in bytes.
**/
var size:Int;
var size:Int64;

/**
The device on which stat resides.
Expand Down