DaveR Valued Contributor


Joined: 03 Sep 2005 Posts: 413 Location: Australia
|
Posted: Thu Aug 20, 2009 12:25 pm Post subject: vdsflist.dll or vdsdll.dll large file bug |
|
|
I just discovered that vdsflist.dll v1.1.0.0 suffers from the same bug that VDS 5 does where numbers larger than 4GB are returned as negative numbers. Unfortunately vdsdll.dll v3.2.0.0 has the same bug.
Is Tommy still around? Does he still support vds.dll?
FYI if anyone is interested, the code I'm using is: | Code: | list clear,%%TempList
flist flags,S
flist list,%%Dir,*.*,ahrs*
list assign,%%TempList,@flist(get)
info @text(%%TempList)
|
or
| Code: | list clear,%%TempList
dll flist,flags,S
dll flist,list,%%Dir,*.*,ahrs*
list assign,%%TempList,@dll(flist,get)
info @text(%%TempList)
|
If the total size of all the files in the directory exceed 4GB the list will contain a negative value. _________________ cheers
Dave |
|