As I can translate this ActivityStarter for app inventor?
public void onClick(View v)
{
Intent intent = new Intent();
intent.setAction(Intent.ACTION_PICK);
// SMB URL (Starts smb:// followed by hostname and port).
intent.setDataAndType(smbUri, "vnd.android.cursor.dir/lysesoft.andsmb.uri");
// Upload
intent.putExtra("command_type", "upload");
// SMB credentials (optional)
intent.putExtra("smb_username", "guest");
//intent.putExtra("smb_password", "yourpassword");
//intent.putExtra("smb_domain", "YOURDOMAIN");
// SMB settings (optional)
//intent.putExtra("smb_encoding", "UTF-8");
// Activity title
intent.putExtra("progress_title", "Uploading files ...");
intent.putExtra("local_file1", "/sdcard/subfolder1/file1.zip");
intent.putExtra("local_file2", "/sdcard/subfolder2/file2.zip");
// Optional initial remote folder (it must exist before upload)
intent.putExtra("remote_folder", "/remotefolder/subfolder");
//intent.putExtra("close_ui", "true");
startActivityForResult(intent, UPLOAD_FILES_REQUEST);