hi
today i see b4j source for finding used lib in b4x projects
now i want to using that and export exist libs to zip file!!
for this i need find b4x(b4j,b4a,......) lib and additional lib path with code
Hello, Sometimes you want to clean the additionnal folder, but are you sure a library is used or not in your projects ? This app lists all the libraries found in your projets. Select a folder, check project's type and you got it! In the left listview are the libraries found. In the right...
Dim shl As Shell
shl.Initialize("shl", "cmd", Array("/c", "ftype"))
shl.Run(10000)
Wait For shl_ProcessCompleted (Success As Boolean, ExitCode As Int, StdOut As String, StdErr As String)
If Success Then
Dim m As Matcher = Regex.Matcher2($"^B4J Source Code=\"([^"]+)"$, Regex.MULTILINE, StdOut)
If m.Find Then
Log(m.Group(1))
End If
End If