Closed
Description
When using with a video file that is larger than 2GB, ExistingFileValidator
always fails even if the file actually exists.
From the code, it's using stat
to check file stats. According to Microsoft document, it seems that function only support up to 32bit file length, which I assume is the cause for this problem.
I think using _stat64
on Windows should fix it, but not sure about other operating system.