vb6parse 1.0.1

vb6parse is a library for parsing and analyzing VB6 code, from projects, to controls, to modules, and forms.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
//! # `FileLen` Function
//!
//! Returns a `Long` specifying the length of a file in bytes.
//!
//! ## Syntax
//!
//! ```vb
//! FileLen(pathname)
//! ```
//!
//! ## Parameters
//!
//! - **pathname**: Required. A `String` expression that specifies a file name. May include
//!   directory or folder, and drive. If the file is not found, an error occurs.
//!
//! ## Return Value
//!
//! Returns a `Long` representing the length of the file in bytes. For open files, the value
//! returned is the size of the file immediately before it was opened.
//!
//! ## Remarks
//!
//! The `FileLen` function returns the size of a file in bytes. This is useful for
//! determining file sizes before reading, checking disk space requirements, validating
//! file downloads, and managing storage.
//!
//! **Important Characteristics:**
//!
//! - Returns file size in bytes
//! - File does not need to be open
//! - Error if file does not exist (Error 53)
//! - Error if path is invalid (Error 76)
//! - Works with full paths and relative paths
//! - For open files, returns size before opening
//! - Maximum file size: 2,147,483,647 bytes (2GB - 1) due to `Long` limit
//! - Returns 0 for empty files
//! - Does not include file system overhead
//! - Can be used with wildcards via `Dir` function
//!
//! ## Typical Uses
//!
//! - Check available space before file operations
//! - Validate file downloads (compare expected vs actual size)
//! - Display file sizes to users
//! - Filter files by size
//! - Calculate total directory size
//! - Determine buffer sizes for file reading
//! - Progress bar calculations for file operations
//! - Detect truncated or corrupted files
//!
//! ## Examples
//!
//! ### Basic Usage
//!
//! ```vb
//! Dim fileSize As Long
//!
//! ' Get file size in bytes
//! fileSize = FileLen("C:\data.txt")
//! Debug.Print "File size: " & fileSize & " bytes"
//!
//! ' Convert to KB, MB, GB
//! Debug.Print "Size in KB: " & Format(fileSize / 1024, "0.00")
//! Debug.Print "Size in MB: " & Format(fileSize / 1048576, "0.00")
//! ```
//!
//! ### Format File Size for Display
//!
//! ```vb
//! Function FormatFileSize(bytes As Long) As String
//!     Const KB = 1024
//!     Const MB = 1048576         ' 1024 * 1024
//!     Const GB = 1073741824      ' 1024 * 1024 * 1024
//!     
//!     If bytes >= GB Then
//!         FormatFileSize = Format(bytes / GB, "0.00") & " GB"
//!     ElseIf bytes >= MB Then
//!         FormatFileSize = Format(bytes / MB, "0.00") & " MB"
//!     ElseIf bytes >= KB Then
//!         FormatFileSize = Format(bytes / KB, "0.00") & " KB"
//!     Else
//!         FormatFileSize = bytes & " bytes"
//!     End If
//! End Function
//!
//! ' Usage
//! Debug.Print FormatFileSize(FileLen("C:\data.txt"))
//! ```
//!
//! ### Check If File Exists and Get Size
//!
//! ```vb
//! Function GetFileSize(filePath As String) As Long
//!     On Error GoTo ErrorHandler
//!     
//!     GetFileSize = FileLen(filePath)
//!     Exit Function
//!     
//! ErrorHandler:
//!     GetFileSize = -1  ' Indicate error
//! End Function
//! ```
//!
//! ## Common Patterns
//!
//! ### Calculate Directory Size
//!
//! ```vb
//! Function GetDirectorySize(folderPath As String) As Long
//!     Dim fileName As String
//!     Dim totalSize As Long
//!     Dim fileSize As Long
//!     
//!     If Right(folderPath, 1) <> "\" Then
//!         folderPath = folderPath & "\"
//!     End If
//!     
//!     fileName = Dir(folderPath & "*.*")
//!     totalSize = 0
//!     
//!     Do While fileName <> ""
//!         On Error Resume Next
//!         fileSize = FileLen(folderPath & fileName)
//!         
//!         If Err.Number = 0 Then
//!             totalSize = totalSize + fileSize
//!         End If
//!         
//!         Err.Clear
//!         fileName = Dir
//!     Loop
//!     
//!     GetDirectorySize = totalSize
//! End Function
//! ```
//!
//! ### Find Largest File
//!
//! ```vb
//! Function FindLargestFile(folderPath As String) As String
//!     Dim fileName As String
//!     Dim largestFile As String
//!     Dim largestSize As Long
//!     Dim currentSize As Long
//!     
//!     If Right(folderPath, 1) <> "\" Then
//!         folderPath = folderPath & "\"
//!     End If
//!     
//!     fileName = Dir(folderPath & "*.*")
//!     largestSize = 0
//!     
//!     Do While fileName <> ""
//!         On Error Resume Next
//!         currentSize = FileLen(folderPath & fileName)
//!         
//!         If Err.Number = 0 And currentSize > largestSize Then
//!             largestSize = currentSize
//!             largestFile = fileName
//!         End If
//!         
//!         Err.Clear
//!         fileName = Dir
//!     Loop
//!     
//!     FindLargestFile = largestFile
//! End Function
//! ```
//!
//! ### Filter Files by Size
//!
//! ```vb
//! Function GetFilesBySize(folderPath As String, minSize As Long, _
//!                         maxSize As Long) As Collection
//!     Dim files As New Collection
//!     Dim fileName As String
//!     Dim fullPath As String
//!     Dim fileSize As Long
//!     
//!     If Right(folderPath, 1) <> "\" Then
//!         folderPath = folderPath & "\"
//!     End If
//!     
//!     fileName = Dir(folderPath & "*.*")
//!     
//!     Do While fileName <> ""
//!         fullPath = folderPath & fileName
//!         
//!         On Error Resume Next
//!         fileSize = FileLen(fullPath)
//!         
//!         If Err.Number = 0 Then
//!             If fileSize >= minSize And fileSize <= maxSize Then
//!                 files.Add fullPath
//!             End If
//!         End If
//!         
//!         Err.Clear
//!         fileName = Dir
//!     Loop
//!     
//!     Set GetFilesBySize = files
//! End Function
//! ```
//!
//! ### Validate File Download
//!
//! ```vb
//! Function ValidateDownload(filePath As String, expectedSize As Long) As Boolean
//!     On Error GoTo ErrorHandler
//!     
//!     Dim actualSize As Long
//!     actualSize = FileLen(filePath)
//!     
//!     ValidateDownload = (actualSize = expectedSize)
//!     
//!     If Not ValidateDownload Then
//!         Debug.Print "Size mismatch - Expected: " & expectedSize & _
//!                     ", Actual: " & actualSize
//!     End If
//!     
//!     Exit Function
//!     
//! ErrorHandler:
//!     ValidateDownload = False
//! End Function
//! ```
//!
//! ### Check Available Space
//!
//! ```vb
//! Function HasEnoughSpace(filePath As String, drive As String) As Boolean
//!     On Error GoTo ErrorHandler
//!     
//!     Dim fileSize As Long
//!     Dim freeSpace As Currency
//!     Dim fso As Object
//!     
//!     ' Get file size
//!     fileSize = FileLen(filePath)
//!     
//!     ' Get free space (using FileSystemObject)
//!     Set fso = CreateObject("Scripting.FileSystemObject")
//!     freeSpace = fso.GetDrive(drive).FreeSpace
//!     
//!     HasEnoughSpace = (freeSpace > fileSize)
//!     Exit Function
//!     
//! ErrorHandler:
//!     HasEnoughSpace = False
//! End Function
//! ```
//!
//! ### Progress Bar for File Copy
//!
//! ```vb
//! Sub CopyFileWithProgress(sourceFile As String, destFile As String)
//!     Dim fileSize As Long
//!     Dim buffer() As Byte
//!     Dim sourceNum As Integer
//!     Dim destNum As Integer
//!     Dim bytesRead As Long
//!     Dim chunkSize As Long
//!     
//!     On Error GoTo ErrorHandler
//!     
//!     ' Get total file size
//!     fileSize = FileLen(sourceFile)
//!     
//!     If fileSize = 0 Then Exit Sub
//!     
//!     chunkSize = 65536  ' 64KB chunks
//!     bytesRead = 0
//!     
//!     sourceNum = FreeFile
//!     Open sourceFile For Binary As #sourceNum
//!     
//!     destNum = FreeFile
//!     Open destFile For Binary As #destNum
//!     
//!     Do While bytesRead < fileSize
//!         If fileSize - bytesRead < chunkSize Then
//!             chunkSize = fileSize - bytesRead
//!         End If
//!         
//!         ReDim buffer(0 To chunkSize - 1)
//!         Get #sourceNum, , buffer
//!         Put #destNum, , buffer
//!         
//!         bytesRead = bytesRead + chunkSize
//!         
//!         ' Update progress bar
//!         ProgressBar.Value = (bytesRead / fileSize) * 100
//!         DoEvents
//!     Loop
//!     
//!     Close #sourceNum
//!     Close #destNum
//!     Exit Sub
//!     
//! ErrorHandler:
//!     If sourceNum > 0 Then Close #sourceNum
//!     If destNum > 0 Then Close #destNum
//! End Sub
//! ```
//!
//! ### List Files with Sizes
//!
//! ```vb
//! Sub ListFilesWithSizes(folderPath As String)
//!     Dim fileName As String
//!     Dim fullPath As String
//!     Dim fileSize As Long
//!     
//!     If Right(folderPath, 1) <> "\" Then
//!         folderPath = folderPath & "\"
//!     End If
//!     
//!     Debug.Print "Files in: " & folderPath
//!     Debug.Print String(60, "-")
//!     Debug.Print "Filename", "Size"
//!     Debug.Print String(60, "-")
//!     
//!     fileName = Dir(folderPath & "*.*")
//!     
//!     Do While fileName <> ""
//!         fullPath = folderPath & fileName
//!         
//!         On Error Resume Next
//!         fileSize = FileLen(fullPath)
//!         
//!         If Err.Number = 0 Then
//!             Debug.Print fileName, FormatFileSize(fileSize)
//!         End If
//!         
//!         Err.Clear
//!         fileName = Dir
//!     Loop
//! End Sub
//! ```
//!
//! ### Allocate Buffer Based on File Size
//!
//! ```vb
//! Function ReadFileToBuffer(filePath As String) As Byte()
//!     Dim fileSize As Long
//!     Dim buffer() As Byte
//!     Dim fileNum As Integer
//!     
//!     On Error GoTo ErrorHandler
//!     
//!     ' Get file size to allocate exact buffer
//!     fileSize = FileLen(filePath)
//!     
//!     If fileSize = 0 Then
//!         ReadFileToBuffer = buffer
//!         Exit Function
//!     End If
//!     
//!     ' Allocate buffer
//!     ReDim buffer(0 To fileSize - 1)
//!     
//!     ' Read file
//!     fileNum = FreeFile
//!     Open filePath For Binary As #fileNum
//!     Get #fileNum, , buffer
//!     Close #fileNum
//!     
//!     ReadFileToBuffer = buffer
//!     Exit Function
//!     
//! ErrorHandler:
//!     If fileNum > 0 Then Close #fileNum
//!     ReadFileToBuffer = buffer
//! End Function
//! ```
//!
//! ### Find Empty Files
//!
//! ```vb
//! Function FindEmptyFiles(folderPath As String) As Collection
//!     Dim emptyFiles As New Collection
//!     Dim fileName As String
//!     Dim fullPath As String
//!     Dim fileSize As Long
//!     
//!     If Right(folderPath, 1) <> "\" Then
//!         folderPath = folderPath & "\"
//!     End If
//!     
//!     fileName = Dir(folderPath & "*.*")
//!     
//!     Do While fileName <> ""
//!         fullPath = folderPath & fileName
//!         
//!         On Error Resume Next
//!         fileSize = FileLen(fullPath)
//!         
//!         If Err.Number = 0 And fileSize = 0 Then
//!             emptyFiles.Add fullPath
//!         End If
//!         
//!         Err.Clear
//!         fileName = Dir
//!     Loop
//!     
//!     Set FindEmptyFiles = emptyFiles
//! End Function
//! ```
//!
//! ### Compare File Sizes
//!
//! ```vb
//! Function CompareFileSizes(file1 As String, file2 As String) As Long
//!     ' Returns: -1 if file1 < file2, 0 if equal, 1 if file1 > file2
//!     On Error GoTo ErrorHandler
//!     
//!     Dim size1 As Long
//!     Dim size2 As Long
//!     
//!     size1 = FileLen(file1)
//!     size2 = FileLen(file2)
//!     
//!     If size1 < size2 Then
//!         CompareFileSizes = -1
//!     ElseIf size1 > size2 Then
//!         CompareFileSizes = 1
//!     Else
//!         CompareFileSizes = 0
//!     End If
//!     
//!     Exit Function
//!     
//! ErrorHandler:
//!     CompareFileSizes = 0
//! End Function
//! ```
//!
//! ## Advanced Usage
//!
//! ### Disk Usage Report
//!
//! ```vb
//! Type DirectoryStats
//!     Path As String
//!     FileCount As Long
//!     TotalSize As Long
//!     LargestFile As String
//!     LargestSize As Long
//!     SmallestFile As String
//!     SmallestSize As Long
//!     AverageSize As Long
//! End Type
//!
//! Function AnalyzeDirectory(folderPath As String) As DirectoryStats
//!     Dim stats As DirectoryStats
//!     Dim fileName As String
//!     Dim fullPath As String
//!     Dim fileSize As Long
//!     
//!     If Right(folderPath, 1) <> "\" Then
//!         folderPath = folderPath & "\"
//!     End If
//!     
//!     stats.Path = folderPath
//!     stats.FileCount = 0
//!     stats.TotalSize = 0
//!     stats.LargestSize = 0
//!     stats.SmallestSize = 2147483647  ' Max Long
//!     
//!     fileName = Dir(folderPath & "*.*")
//!     
//!     Do While fileName <> ""
//!         fullPath = folderPath & fileName
//!         
//!         On Error Resume Next
//!         fileSize = FileLen(fullPath)
//!         
//!         If Err.Number = 0 Then
//!             stats.FileCount = stats.FileCount + 1
//!             stats.TotalSize = stats.TotalSize + fileSize
//!             
//!             If fileSize > stats.LargestSize Then
//!                 stats.LargestSize = fileSize
//!                 stats.LargestFile = fileName
//!             End If
//!             
//!             If fileSize < stats.SmallestSize Then
//!                 stats.SmallestSize = fileSize
//!                 stats.SmallestFile = fileName
//!             End If
//!         End If
//!         
//!         Err.Clear
//!         fileName = Dir
//!     Loop
//!     
//!     If stats.FileCount > 0 Then
//!         stats.AverageSize = stats.TotalSize / stats.FileCount
//!     End If
//!     
//!     AnalyzeDirectory = stats
//! End Function
//! ```
//!
//! ### Sort Files by Size
//!
//! ```vb
//! Type FileSizeInfo
//!     Name As String
//!     Size As Long
//! End Type
//!
//! Function GetFilesSortedBySize(folderPath As String) As Variant
//!     Dim files() As FileSizeInfo
//!     Dim fileName As String
//!     Dim fullPath As String
//!     Dim count As Long
//!     Dim i As Long, j As Long
//!     Dim temp As FileSizeInfo
//!     
//!     If Right(folderPath, 1) <> "\" Then
//!         folderPath = folderPath & "\"
//!     End If
//!     
//!     ReDim files(0 To 100)
//!     count = 0
//!     fileName = Dir(folderPath & "*.*")
//!     
//!     Do While fileName <> ""
//!         fullPath = folderPath & fileName
//!         
//!         On Error Resume Next
//!         files(count).Name = fileName
//!         files(count).Size = FileLen(fullPath)
//!         
//!         If Err.Number = 0 Then
//!             count = count + 1
//!             If count > UBound(files) Then
//!                 ReDim Preserve files(0 To UBound(files) + 100)
//!             End If
//!         End If
//!         
//!         Err.Clear
//!         fileName = Dir
//!     Loop
//!     
//!     If count > 0 Then
//!         ReDim Preserve files(0 To count - 1)
//!         
//!         ' Bubble sort by size (largest first)
//!         For i = 0 To count - 2
//!             For j = i + 1 To count - 1
//!                 If files(j).Size > files(i).Size Then
//!                     temp = files(i)
//!                     files(i) = files(j)
//!                     files(j) = temp
//!                 End If
//!             Next j
//!         Next i
//!     End If
//!     
//!     GetFilesSortedBySize = files
//! End Function
//! ```
//!
//! ### File Size Distribution
//!
//! ```vb
//! Type SizeDistribution
//!     Range As String
//!     Count As Long
//!     TotalSize As Long
//! End Type
//!
//! Function GetSizeDistribution(folderPath As String) As Variant
//!     Dim dist(0 To 5) As SizeDistribution
//!     Dim fileName As String
//!     Dim fullPath As String
//!     Dim fileSize As Long
//!     
//!     ' Define ranges
//!     dist(0).Range = "< 1 KB"
//!     dist(1).Range = "1 KB - 100 KB"
//!     dist(2).Range = "100 KB - 1 MB"
//!     dist(3).Range = "1 MB - 10 MB"
//!     dist(4).Range = "10 MB - 100 MB"
//!     dist(5).Range = "> 100 MB"
//!     
//!     If Right(folderPath, 1) <> "\" Then
//!         folderPath = folderPath & "\"
//!     End If
//!     
//!     fileName = Dir(folderPath & "*.*")
//!     
//!     Do While fileName <> ""
//!         fullPath = folderPath & fileName
//!         
//!         On Error Resume Next
//!         fileSize = FileLen(fullPath)
//!         
//!         If Err.Number = 0 Then
//!             If fileSize < 1024 Then
//!                 dist(0).Count = dist(0).Count + 1
//!                 dist(0).TotalSize = dist(0).TotalSize + fileSize
//!             ElseIf fileSize < 102400 Then
//!                 dist(1).Count = dist(1).Count + 1
//!                 dist(1).TotalSize = dist(1).TotalSize + fileSize
//!             ElseIf fileSize < 1048576 Then
//!                 dist(2).Count = dist(2).Count + 1
//!                 dist(2).TotalSize = dist(2).TotalSize + fileSize
//!             ElseIf fileSize < 10485760 Then
//!                 dist(3).Count = dist(3).Count + 1
//!                 dist(3).TotalSize = dist(3).TotalSize + fileSize
//!             ElseIf fileSize < 104857600 Then
//!                 dist(4).Count = dist(4).Count + 1
//!                 dist(4).TotalSize = dist(4).TotalSize + fileSize
//!             Else
//!                 dist(5).Count = dist(5).Count + 1
//!                 dist(5).TotalSize = dist(5).TotalSize + fileSize
//!             End If
//!         End If
//!         
//!         Err.Clear
//!         fileName = Dir
//!     Loop
//!     
//!     GetSizeDistribution = dist
//! End Function
//! ```
//!
//! ### Quota Management
//!
//! ```vb
//! Function CheckQuota(userFolder As String, quotaLimit As Long) As Boolean
//!     Dim totalSize As Long
//!     Dim fileName As String
//!     Dim fullPath As String
//!     Dim fileSize As Long
//!     
//!     If Right(userFolder, 1) <> "\" Then
//!         userFolder = userFolder & "\"
//!     End If
//!     
//!     totalSize = 0
//!     fileName = Dir(userFolder & "*.*")
//!     
//!     Do While fileName <> ""
//!         fullPath = userFolder & fileName
//!         
//!         On Error Resume Next
//!         fileSize = FileLen(fullPath)
//!         
//!         If Err.Number = 0 Then
//!             totalSize = totalSize + fileSize
//!         End If
//!         
//!         Err.Clear
//!         fileName = Dir
//!     Loop
//!     
//!     If totalSize > quotaLimit Then
//!         MsgBox "Quota exceeded!" & vbCrLf & _
//!                "Used: " & FormatFileSize(totalSize) & vbCrLf & _
//!                "Limit: " & FormatFileSize(quotaLimit), vbExclamation
//!         CheckQuota = False
//!     Else
//!         CheckQuota = True
//!     End If
//! End Function
//! ```
//!
//! ### Duplicate File Finder (by size)
//!
//! ```vb
//! Function FindPotentialDuplicates(folderPath As String) As Collection
//!     ' Files with same size are potential duplicates
//!     Dim sizeMap As New Collection
//!     Dim duplicates As New Collection
//!     Dim fileName As String
//!     Dim fullPath As String
//!     Dim fileSize As Long
//!     Dim sizeKey As String
//!     
//!     If Right(folderPath, 1) <> "\" Then
//!         folderPath = folderPath & "\"
//!     End If
//!     
//!     fileName = Dir(folderPath & "*.*")
//!     
//!     Do While fileName <> ""
//!         fullPath = folderPath & fileName
//!         
//!         On Error Resume Next
//!         fileSize = FileLen(fullPath)
//!         
//!         If Err.Number = 0 Then
//!             sizeKey = CStr(fileSize)
//!             
//!             ' Try to add to collection
//!             Err.Clear
//!             sizeMap.Add fullPath, sizeKey
//!             
//!             If Err.Number <> 0 Then
//!                 ' Duplicate size found
//!                 duplicates.Add fullPath
//!             End If
//!         End If
//!         
//!         Err.Clear
//!         fileName = Dir
//!     Loop
//!     
//!     Set FindPotentialDuplicates = duplicates
//! End Function
//! ```
//!
//! ## Error Handling
//!
//! ```vb
//! Function SafeFileLen(filePath As String) As Long
//!     On Error GoTo ErrorHandler
//!     
//!     SafeFileLen = FileLen(filePath)
//!     Exit Function
//!     
//! ErrorHandler:
//!     Select Case Err.Number
//!         Case 53  ' File not found
//!             Debug.Print "File not found: " & filePath
//!             SafeFileLen = -1
//!         Case 76  ' Path not found
//!             Debug.Print "Path not found: " & filePath
//!             SafeFileLen = -1
//!         Case Else
//!             Debug.Print "Error " & Err.Number & ": " & Err.Description
//!             SafeFileLen = -1
//!     End Select
//! End Function
//! ```
//!
//! ### Common Errors
//!
//! - **Error 53** (File not found): The specified file does not exist
//! - **Error 76** (Path not found): The specified path is invalid
//! - **Error 6** (Overflow): File larger than 2GB (Long limit exceeded)
//!
//! ## Performance Considerations
//!
//! - `FileLen` is very fast (reads file metadata only)
//! - Does not open the file or read contents
//! - Much faster than opening file to determine size
//! - Performance depends on file system and disk speed
//! - Network paths are slower than local paths
//! - Consider caching results if checking same file repeatedly
//!
//! ## Best Practices
//!
//! ### Check File Existence First
//!
//! ```vb
//! ' Good - Check existence to avoid error
//! If Dir(filePath) <> "" Then
//!     fileSize = FileLen(filePath)
//! Else
//!     MsgBox "File not found"
//! End If
//!
//! ' Or use error handling
//! On Error Resume Next
//! fileSize = FileLen(filePath)
//! If Err.Number <> 0 Then
//!     MsgBox "Cannot get file size"
//! End If
//! On Error GoTo 0
//! ```
//!
//! ### Format for Display
//!
//! ```vb
//! ' Good - Format sizes for readability
//! Dim size As Long
//! size = FileLen(filePath)
//! MsgBox "File size: " & FormatFileSize(size)
//!
//! ' Bad - Raw bytes for large files
//! MsgBox "File size: " & FileLen(filePath) & " bytes"
//! ```
//!
//! ## Comparison with Other Functions
//!
//! ### `FileLen` vs `LOF`
//!
//! ```vb
//! ' FileLen - For closed files, returns current size
//! fileSize = FileLen("C:\data.txt")
//!
//! ' LOF - For open files only, returns current size
//! Open "C:\data.txt" For Input As #1
//! fileSize = LOF(1)
//! Close #1
//! ```
//!
//! ### `FileLen` vs `FileSystemObject.GetFile.Size`
//!
//! ```vb
//! ' FileLen - Built-in VB6 function
//! fileSize = FileLen("C:\data.txt")
//!
//! ' FSO - Requires reference to Scripting Runtime
//! Dim fso As Object
//! Set fso = CreateObject("Scripting.FileSystemObject")
//! fileSize = fso.GetFile("C:\data.txt").Size
//! ```
//!
//! ## Limitations
//!
//! - Maximum file size: 2,147,483,647 bytes (2GB - 1) due to `Long` type
//! - For files > 2GB, use `FileSystemObject` or API calls
//! - File must exist (cannot get size of non-existent files)
//! - Cannot get size of directories
//! - Returns size before opening for open files
//! - No built-in wildcard support (must use with `Dir`)
//!
//! ## Related Functions
//!
//! - `LOF`: Returns length of open file
//! - `Dir`: Returns file names matching a pattern
//! - `FileDateTime`: Returns file modification date/time
//! - `GetAttr`: Returns file attributes
//! - `FreeFile`: Returns next available file number
//! - `Open`: Opens a file for reading or writing

#[cfg(test)]
mod tests {
    use crate::*;

    #[test]
    fn filelen_basic() {
        let source = r#"
fileSize = FileLen("C:\data.txt")
"#;
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings
            .set_snapshot_path("../../../../../snapshots/syntax/library/functions/file/filelen");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn filelen_variable() {
        let source = r"
size = FileLen(filePath)
";
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings
            .set_snapshot_path("../../../../../snapshots/syntax/library/functions/file/filelen");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn filelen_debug_print() {
        let source = r#"
Debug.Print FileLen("C:\temp.dat")
"#;
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings
            .set_snapshot_path("../../../../../snapshots/syntax/library/functions/file/filelen");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn filelen_format() {
        let source = r#"
formatted = Format(FileLen(filePath) / 1024, "0.00") & " KB"
"#;
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings
            .set_snapshot_path("../../../../../snapshots/syntax/library/functions/file/filelen");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn filelen_in_function() {
        let source = r"
Function GetFileSize(path As String) As Long
    GetFileSize = FileLen(path)
End Function
";
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings
            .set_snapshot_path("../../../../../snapshots/syntax/library/functions/file/filelen");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn filelen_addition() {
        let source = r"
totalSize = totalSize + FileLen(fullPath)
";
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings
            .set_snapshot_path("../../../../../snapshots/syntax/library/functions/file/filelen");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn filelen_comparison() {
        let source = r"
isLarger = (FileLen(file1) > FileLen(file2))
";
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings
            .set_snapshot_path("../../../../../snapshots/syntax/library/functions/file/filelen");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn filelen_if_statement() {
        let source = r#"
If FileLen(fullPath) > maxSize Then
    Debug.Print "File too large"
End If
"#;
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings
            .set_snapshot_path("../../../../../snapshots/syntax/library/functions/file/filelen");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn filelen_error_handling() {
        let source = r#"
On Error Resume Next
size = FileLen(filePath)
If Err.Number <> 0 Then
    MsgBox "Error"
End If
"#;
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings
            .set_snapshot_path("../../../../../snapshots/syntax/library/functions/file/filelen");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn filelen_loop() {
        let source = r#"
Do While fileName <> ""
    fileSize = FileLen(folderPath & fileName)
    fileName = Dir
Loop
"#;
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings
            .set_snapshot_path("../../../../../snapshots/syntax/library/functions/file/filelen");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn filelen_concatenation() {
        let source = r#"
msg = "Size: " & FileLen(filePath) & " bytes"
"#;
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings
            .set_snapshot_path("../../../../../snapshots/syntax/library/functions/file/filelen");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn filelen_range_check() {
        let source = r"
If FileLen(fullPath) >= minSize And FileLen(fullPath) <= maxSize Then
    files.Add fullPath
End If
";
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings
            .set_snapshot_path("../../../../../snapshots/syntax/library/functions/file/filelen");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn filelen_equality() {
        let source = r"
isValid = (FileLen(filePath) = expectedSize)
";
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings
            .set_snapshot_path("../../../../../snapshots/syntax/library/functions/file/filelen");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn filelen_zero_check() {
        let source = r"
If FileLen(fullPath) = 0 Then
    emptyFiles.Add fullPath
End If
";
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings
            .set_snapshot_path("../../../../../snapshots/syntax/library/functions/file/filelen");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn filelen_udt_field() {
        let source = r"
stats.TotalSize = stats.TotalSize + FileLen(fullPath)
";
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings
            .set_snapshot_path("../../../../../snapshots/syntax/library/functions/file/filelen");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn filelen_max_comparison() {
        let source = r"
If FileLen(fullPath) > largestSize Then
    largestSize = FileLen(fullPath)
    largestFile = fileName
End If
";
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings
            .set_snapshot_path("../../../../../snapshots/syntax/library/functions/file/filelen");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn filelen_buffer_allocation() {
        let source = r"
fileSize = FileLen(filePath)
ReDim buffer(0 To fileSize - 1)
";
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings
            .set_snapshot_path("../../../../../snapshots/syntax/library/functions/file/filelen");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn filelen_progress_calculation() {
        let source = r"
ProgressBar.Value = (bytesRead / FileLen(sourceFile)) * 100
";
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings
            .set_snapshot_path("../../../../../snapshots/syntax/library/functions/file/filelen");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn filelen_array_assignment() {
        let source = r"
files(count).Size = FileLen(fullPath)
";
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings
            .set_snapshot_path("../../../../../snapshots/syntax/library/functions/file/filelen");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn filelen_division() {
        let source = r"
averageSize = totalSize / fileCount
sizeInMB = FileLen(filePath) / 1048576
";
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings
            .set_snapshot_path("../../../../../snapshots/syntax/library/functions/file/filelen");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn filelen_msgbox() {
        let source = r#"
MsgBox "File size: " & FormatFileSize(FileLen(filePath))
"#;
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings
            .set_snapshot_path("../../../../../snapshots/syntax/library/functions/file/filelen");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn filelen_select_case() {
        let source = r#"
Select Case FileLen(filePath)
    Case Is < 1024
        Debug.Print "Small"
    Case Is < 1048576
        Debug.Print "Medium"
    Case Else
        Debug.Print "Large"
End Select
"#;
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings
            .set_snapshot_path("../../../../../snapshots/syntax/library/functions/file/filelen");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn filelen_print_statement() {
        let source = r"
Print #reportNum, fileName, FileLen(fullPath)
";
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings
            .set_snapshot_path("../../../../../snapshots/syntax/library/functions/file/filelen");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn filelen_for_loop() {
        let source = r"
For i = 0 To fileCount - 1
    totalSize = totalSize + FileLen(files(i))
Next i
";
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings
            .set_snapshot_path("../../../../../snapshots/syntax/library/functions/file/filelen");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn filelen_multiline() {
        let source = r#"
info = "File: " & fileName & vbCrLf & _
       "Size: " & FileLen(fullPath) & " bytes" & vbCrLf & _
       "Size (MB): " & Format(FileLen(fullPath) / 1048576, "0.00")
"#;
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings
            .set_snapshot_path("../../../../../snapshots/syntax/library/functions/file/filelen");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }

    #[test]
    fn filelen_category_check() {
        let source = r#"
If FileLen(filePath) < 102400 Then
    category = "Small"
ElseIf FileLen(filePath) < 10485760 Then
    category = "Medium"
Else
    category = "Large"
End If
"#;
        let (cst_opt, _failures) = ConcreteSyntaxTree::from_text("test.bas", source).unpack();
        let cst = cst_opt.expect("CST should be parsed");
        let tree = cst.to_serializable();

        let mut settings = insta::Settings::clone_current();
        settings
            .set_snapshot_path("../../../../../snapshots/syntax/library/functions/file/filelen");
        settings.set_prepend_module_to_snapshot(false);
        let _guard = settings.bind_to_scope();
        insta::assert_yaml_snapshot!(tree);
    }
}