Comment obtenir le nom de fichier de l'intention?

C'est mon fichier de manifeste. Après l'utilisation de filtre d'intention j'ai télécharger le fichier ics à partir de la pièce jointe du mail. Quand j'ai ouvert le fichier téléchargé, il commence ma demande. J'ai besoin d'obtenir le nom de fichier et les données du fichier sélectionné dans mon application. Que dois-je faire dans le manifeste et le fichier java. Je suis très nouveau pour android quelqu'un peut-il m'aider????

<application android:label="@string/app_name" android:icon="@drawable/icsicon">
    <activity android:name=".setMIMEfile" android:label="@string/app_name">
     <intent-filter>
         <action android:name="android.intent.action.VIEW" />
         <category android:name="android.intent.category.DEFAULT" />
         <data android:mimeType="*/*" />
        <data android:pathPattern=".*\\.ics" />    
     </intent-filter>
</activity>

source d'informationauteur Sumithran