Trying to wrap my head around something I think should be pretty basic. I need a numeric count of files that are modified using the jWatcher library. I tried this code and something is not right, any help is appreciated. THANK YOU ALL!
B4X:
Sub fw_ModificationDetected(FileName As String)
Dim fn As Int = fw_ModificationDetected(FileName).Length
If fn > 4 Then
Log("ModificationsDetected: " & fn ) "Logs the number of files modified
End If
End Sub