Skip to main content

How to get File Name from Uri using a function which take file path as input

File Name From URI Did you know how to get the display name from a file name from Uri or Path? You know what it is very easy to find the name from the file. Here will create a function with the name of getName and provide the path or URI as input to this function and it will return the display file name frURIuri.



File Name from URI


Create Function to get File Name from URI


For getting the File Name from URI we will create a small function which will take the URI as input and return the File Name.  The function is as given below, In this function, we are taking filePath as input to the function. the In the second line of the code we are checking whether given parameter is null or has the length greater than zero. the If the file path is null or length is zero then we will return with null name else we will work further.



  public static String getName(String filePath) {  
if (filePath == null || filePath.length() == 0) {
return "";
}
int extract = path.lastIndexOf('?');
if (extract > 0) {
filePath = filePath.substring(0, extract);
}
int namePos = filePath.lastIndexOf(File.separatorChar);
return (namePos >= 0) ? filePath.substring(namePos + 1) : filePath;
}

In next line of code where we are using the variable extract to get the last index of the file name separated by "/", then using if condition we are checking the value of extract whether it is greater than zero or not because the index of last must be greater than zero.

Then using below code we are extracting the name of the file.
 filePath = filePath.substring(0, extract);  

Then in the last line of our code, we are returning the extracted name of our file. We have used this code in some of the other previous example posted here.

How to use getName function to extract File Name from URI


Here question is that how to use our getName function the in real example. Suppose that we have a file with the name of myfile and we want to get the name of the myfile. Then we will use the function as given below and store the name in some variable and use it.
  String FileName=getName(Uri.fromFile(myfile).toString());  

 

 

Comments

Popular posts from this blog

Flutter How to Start Android Activity from Flutter View

Flutter and Dart is an excellent combination for creating the UI, but for accessing the platform-specific service we need to open platform-specific activity. So lets in this article we will explore how to start an android activity and access the service from Flutter View. Create a Project for this Android Activity Flutter View Demo Create a Project From File menu select the New Flutter Project Enter the project name Select the AndroidX support and click on next After the above, we step click on Finish We will have the following project structure created. Create the Second Activity in Android Just go to the android folder and open it in separate windows. We will have the following project structure. Create the Activity Just right-click on the Kotlin folder and create a blank activity from the menu. If you create the activity then you may be required to upgrade the Gradle and do some import. So Just click on update and wait for the project s

Kotlin Parcelable Array Objects Send To Activity

We know that IPC (Inter Process Communication) between the activity is an extremely important part of any application development. We often required that we need to send some data to other activity. For example, we may be required to send an array of data, data could be an Integer, String, Long, Double, Float or any other custom data objects. So, In this example, we are going to learn how to implement the Kotlin Parcelable Array object to send the data from one activity to second activity. What is Parcel? The parcel class is designed as a high-performance IPC transport. A Parcel can contain both flattened data that will be unflattened on the other side of the IPC, and references to live IBinde r objects that will result in the other side receiving a proxy IBinder connected with the original IBinder in the Parcel. Create Kotlin Parcelable Array Objects Parcelable is API for placing the arbitrary objects into the Parcel. In Actual in android app development, Parcelable is an interface

Scan and List All Available WiFi Network In Android

In this tutorial, we learn how to connect to a WiFi hotspot in android by code. In this Demo we will create an as small app which will scan the all available network or Hotspot and list down the network when you select specific network, the application will connect that particular network. You May Like Below Topic: How to Read and Write JSON data using GSON WP Android App using REST and volley WP Android App using REST and volley part2 Implementation of SwipeRefreshLayout in RecyclerView Create Amazing Bottom Navigation Bar Without Any External Library Introduction In this tutorial, we learn how to connect to a WiFi hotspot in android by code. In this Demo we will create an as small app which will scan the all available network or Hotspot and list down the network when you select specific network, the application will connect that particular network. We will add this functionality to our existing Demo app " Video Gallery ". If you would like to check out t