How come that the following script is reporting the same size for dir1 as dir2 ?
Am I missing something here ?
Both dirs exist though...

SIZE.KIX
Open( 1 , "size.csv" , 5 )
WriteLine( 1 , "dir1;" + GetDiskSpace("F:\DIR1") + ";" + @CRLF )
WriteLine( 1 , "dir2;" + GetDiskSpace("F:\DIR2") + ";" + @CRLF )
Close ( 1 )

SIZE.CSV
dir1;43303784;
dir2;43303784;