DocumentFile.renameTo uses old filename when sharing file through gallery
I have an app that renames images and use the Document Fileprovider to be able to rename files also on the external storage.
The renaming works fine, when I check the filename via a filemanager and also when I view the the "Info" in the Google Photos app the new filename shows.
But when I share the file via Google Photos and choose "Mail" for example, the attachment picks up the old filename.
I tried updating the media store with:
Bundle bundle = new Bundle();
bundle.putString("volume", "external");
context.startService(new Intent().setComponent(new ComponentName("com.android.providers.media", "com.android.providers.media.MediaScannerService")).putExtras(bundle));
and
Intent intent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
intent.setData(Uri.fromFile(newFile));
context.sendBroadcast(intent);
or
private static void updateMediaStore(Context context, File oldFile, File newFile, long taken)
deleteImageFromMediaStore(context, oldFile.getAbsolutePath());
addImageToMediaStore(context.getContentResolver(), newFile, taken);
private static void deleteImageFromMediaStore(Context context, String path)
Uri rootUri = MediaStore.Audio.Media.getContentUriForPath( path );
context.getContentResolver().delete( rootUri,
MediaStore.MediaColumns.DATA + "=?", new String path );
private static void addImageToMediaStore(ContentResolver cr, File filepath, long taken)
ContentValues values = new ContentValues();
values.put(MediaStore.Images.Media.TITLE, filepath.getName());
values.put(MediaStore.Images.Media.DISPLAY_NAME, filepath.getName());
values.put(MediaStore.Images.Media.DESCRIPTION, "");
values.put(MediaStore.Images.Media.MIME_TYPE, Helper.isImageFile(filepath.getAbsolutePath()) ? "image/jpeg": "video/mp4");
values.put(MediaStore.Images.Media.DATE_ADDED, System.currentTimeMillis());
values.put(MediaStore.Images.Media.DATE_TAKEN, taken);
values.put(MediaStore.Images.Media.DATA, filepath.toString());
cr.insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);
...also tried some 3rd party media scanners from the playstore.
Rebooted too, since that triggers a media scan as well.
But the problem still exists.
Added some images that shows the issue I describe
android mediastore documentfile
add a comment |
I have an app that renames images and use the Document Fileprovider to be able to rename files also on the external storage.
The renaming works fine, when I check the filename via a filemanager and also when I view the the "Info" in the Google Photos app the new filename shows.
But when I share the file via Google Photos and choose "Mail" for example, the attachment picks up the old filename.
I tried updating the media store with:
Bundle bundle = new Bundle();
bundle.putString("volume", "external");
context.startService(new Intent().setComponent(new ComponentName("com.android.providers.media", "com.android.providers.media.MediaScannerService")).putExtras(bundle));
and
Intent intent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
intent.setData(Uri.fromFile(newFile));
context.sendBroadcast(intent);
or
private static void updateMediaStore(Context context, File oldFile, File newFile, long taken)
deleteImageFromMediaStore(context, oldFile.getAbsolutePath());
addImageToMediaStore(context.getContentResolver(), newFile, taken);
private static void deleteImageFromMediaStore(Context context, String path)
Uri rootUri = MediaStore.Audio.Media.getContentUriForPath( path );
context.getContentResolver().delete( rootUri,
MediaStore.MediaColumns.DATA + "=?", new String path );
private static void addImageToMediaStore(ContentResolver cr, File filepath, long taken)
ContentValues values = new ContentValues();
values.put(MediaStore.Images.Media.TITLE, filepath.getName());
values.put(MediaStore.Images.Media.DISPLAY_NAME, filepath.getName());
values.put(MediaStore.Images.Media.DESCRIPTION, "");
values.put(MediaStore.Images.Media.MIME_TYPE, Helper.isImageFile(filepath.getAbsolutePath()) ? "image/jpeg": "video/mp4");
values.put(MediaStore.Images.Media.DATE_ADDED, System.currentTimeMillis());
values.put(MediaStore.Images.Media.DATE_TAKEN, taken);
values.put(MediaStore.Images.Media.DATA, filepath.toString());
cr.insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);
...also tried some 3rd party media scanners from the playstore.
Rebooted too, since that triggers a media scan as well.
But the problem still exists.
Added some images that shows the issue I describe
android mediastore documentfile
...one more thing I have found: When I share the file via the "Files" app it works. Just Goole Photos and other Gallery Apps I found I have issues with.
– JayTee
Nov 11 '18 at 7:14
Sounds like you should Send Feedback to the apps that are caching an old name.
– ianhanniballake
Nov 11 '18 at 8:01
I just noticed, that when I attach a file from the mail app and use the Files app, the old file appears in the "Recent" list. When I navigate to the file directly with /sdcard/DCIM/Camera, the correct new filename appears.
– JayTee
Nov 11 '18 at 9:42
add a comment |
I have an app that renames images and use the Document Fileprovider to be able to rename files also on the external storage.
The renaming works fine, when I check the filename via a filemanager and also when I view the the "Info" in the Google Photos app the new filename shows.
But when I share the file via Google Photos and choose "Mail" for example, the attachment picks up the old filename.
I tried updating the media store with:
Bundle bundle = new Bundle();
bundle.putString("volume", "external");
context.startService(new Intent().setComponent(new ComponentName("com.android.providers.media", "com.android.providers.media.MediaScannerService")).putExtras(bundle));
and
Intent intent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
intent.setData(Uri.fromFile(newFile));
context.sendBroadcast(intent);
or
private static void updateMediaStore(Context context, File oldFile, File newFile, long taken)
deleteImageFromMediaStore(context, oldFile.getAbsolutePath());
addImageToMediaStore(context.getContentResolver(), newFile, taken);
private static void deleteImageFromMediaStore(Context context, String path)
Uri rootUri = MediaStore.Audio.Media.getContentUriForPath( path );
context.getContentResolver().delete( rootUri,
MediaStore.MediaColumns.DATA + "=?", new String path );
private static void addImageToMediaStore(ContentResolver cr, File filepath, long taken)
ContentValues values = new ContentValues();
values.put(MediaStore.Images.Media.TITLE, filepath.getName());
values.put(MediaStore.Images.Media.DISPLAY_NAME, filepath.getName());
values.put(MediaStore.Images.Media.DESCRIPTION, "");
values.put(MediaStore.Images.Media.MIME_TYPE, Helper.isImageFile(filepath.getAbsolutePath()) ? "image/jpeg": "video/mp4");
values.put(MediaStore.Images.Media.DATE_ADDED, System.currentTimeMillis());
values.put(MediaStore.Images.Media.DATE_TAKEN, taken);
values.put(MediaStore.Images.Media.DATA, filepath.toString());
cr.insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);
...also tried some 3rd party media scanners from the playstore.
Rebooted too, since that triggers a media scan as well.
But the problem still exists.
Added some images that shows the issue I describe
android mediastore documentfile
I have an app that renames images and use the Document Fileprovider to be able to rename files also on the external storage.
The renaming works fine, when I check the filename via a filemanager and also when I view the the "Info" in the Google Photos app the new filename shows.
But when I share the file via Google Photos and choose "Mail" for example, the attachment picks up the old filename.
I tried updating the media store with:
Bundle bundle = new Bundle();
bundle.putString("volume", "external");
context.startService(new Intent().setComponent(new ComponentName("com.android.providers.media", "com.android.providers.media.MediaScannerService")).putExtras(bundle));
and
Intent intent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
intent.setData(Uri.fromFile(newFile));
context.sendBroadcast(intent);
or
private static void updateMediaStore(Context context, File oldFile, File newFile, long taken)
deleteImageFromMediaStore(context, oldFile.getAbsolutePath());
addImageToMediaStore(context.getContentResolver(), newFile, taken);
private static void deleteImageFromMediaStore(Context context, String path)
Uri rootUri = MediaStore.Audio.Media.getContentUriForPath( path );
context.getContentResolver().delete( rootUri,
MediaStore.MediaColumns.DATA + "=?", new String path );
private static void addImageToMediaStore(ContentResolver cr, File filepath, long taken)
ContentValues values = new ContentValues();
values.put(MediaStore.Images.Media.TITLE, filepath.getName());
values.put(MediaStore.Images.Media.DISPLAY_NAME, filepath.getName());
values.put(MediaStore.Images.Media.DESCRIPTION, "");
values.put(MediaStore.Images.Media.MIME_TYPE, Helper.isImageFile(filepath.getAbsolutePath()) ? "image/jpeg": "video/mp4");
values.put(MediaStore.Images.Media.DATE_ADDED, System.currentTimeMillis());
values.put(MediaStore.Images.Media.DATE_TAKEN, taken);
values.put(MediaStore.Images.Media.DATA, filepath.toString());
cr.insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);
...also tried some 3rd party media scanners from the playstore.
Rebooted too, since that triggers a media scan as well.
But the problem still exists.
Added some images that shows the issue I describe
android mediastore documentfile
android mediastore documentfile
edited Nov 11 '18 at 7:25
JayTee
asked Nov 11 '18 at 7:05
JayTeeJayTee
3531414
3531414
...one more thing I have found: When I share the file via the "Files" app it works. Just Goole Photos and other Gallery Apps I found I have issues with.
– JayTee
Nov 11 '18 at 7:14
Sounds like you should Send Feedback to the apps that are caching an old name.
– ianhanniballake
Nov 11 '18 at 8:01
I just noticed, that when I attach a file from the mail app and use the Files app, the old file appears in the "Recent" list. When I navigate to the file directly with /sdcard/DCIM/Camera, the correct new filename appears.
– JayTee
Nov 11 '18 at 9:42
add a comment |
...one more thing I have found: When I share the file via the "Files" app it works. Just Goole Photos and other Gallery Apps I found I have issues with.
– JayTee
Nov 11 '18 at 7:14
Sounds like you should Send Feedback to the apps that are caching an old name.
– ianhanniballake
Nov 11 '18 at 8:01
I just noticed, that when I attach a file from the mail app and use the Files app, the old file appears in the "Recent" list. When I navigate to the file directly with /sdcard/DCIM/Camera, the correct new filename appears.
– JayTee
Nov 11 '18 at 9:42
...one more thing I have found: When I share the file via the "Files" app it works. Just Goole Photos and other Gallery Apps I found I have issues with.
– JayTee
Nov 11 '18 at 7:14
...one more thing I have found: When I share the file via the "Files" app it works. Just Goole Photos and other Gallery Apps I found I have issues with.
– JayTee
Nov 11 '18 at 7:14
Sounds like you should Send Feedback to the apps that are caching an old name.
– ianhanniballake
Nov 11 '18 at 8:01
Sounds like you should Send Feedback to the apps that are caching an old name.
– ianhanniballake
Nov 11 '18 at 8:01
I just noticed, that when I attach a file from the mail app and use the Files app, the old file appears in the "Recent" list. When I navigate to the file directly with /sdcard/DCIM/Camera, the correct new filename appears.
– JayTee
Nov 11 '18 at 9:42
I just noticed, that when I attach a file from the mail app and use the Files app, the old file appears in the "Recent" list. When I navigate to the file directly with /sdcard/DCIM/Camera, the correct new filename appears.
– JayTee
Nov 11 '18 at 9:42
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53246565%2fdocumentfile-renameto-uses-old-filename-when-sharing-file-through-gallery%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53246565%2fdocumentfile-renameto-uses-old-filename-when-sharing-file-through-gallery%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
...one more thing I have found: When I share the file via the "Files" app it works. Just Goole Photos and other Gallery Apps I found I have issues with.
– JayTee
Nov 11 '18 at 7:14
Sounds like you should Send Feedback to the apps that are caching an old name.
– ianhanniballake
Nov 11 '18 at 8:01
I just noticed, that when I attach a file from the mail app and use the Files app, the old file appears in the "Recent" list. When I navigate to the file directly with /sdcard/DCIM/Camera, the correct new filename appears.
– JayTee
Nov 11 '18 at 9:42