Android Question Reference Phone Download Directory

Stephenz43

Member
Licensed User
Longtime User
Hello

I'm new to android and having difficulty figuring out the syntax to reference a file I want to install from the phones download directory ( not the SDcard ). The file ( test.apk ) is downloaded to phone/download.
the

Dim iIntent AsIntent
iIntent.Initialize(iIntent.ACTION_VIEW, "file://" ????????????? & "/test.apk")
iIntent.SetType("application/vnd.android.package-archive")
StartActivity(iIntent)
 
Top