'APK Name auslesen und aus download löschen
ListView1.Initialize("ListView1")
fileList = File.ListFiles(sdRoot & "download")
For n = 0 To fileList.Size-1
file1 = fileList.Get(n)
If file1.EndsWith(".apk") Then
ListView1.AddSingleLine(file1)
mAPKName = file1
End If
Next
If mAPKName <> "" Then
If File.Exists(sdRoot & "download", mAPKName) = True Then
File.Delete(sdRoot & "download", mAPKName)
End If
End If