Get File path(Content uri) from file manager === ```java= Uri uri = getIntent().getData(); File file = new File(uri.getPath()); String path = file.getAbsolutePath(); ``` ## Ref. [Get File path of file chosen from file manager](https://stackoverflow.com/a/31529084) ###### tags: `File 相關`