Issue metadata
Sign in to add a comment
|
"Use a shorter name" error, but name is short |
||||||||||||||||||||||||
Issue descriptionChrome Version: 70.0.3538.22 I'm getting this error when attempting to rename a file. Not sure what the repro steps are; here's what I did: 1. Select a file with a long name (dev-channel%2Fkevin%2F11101.0.0%2Fchromeos_11101.0.0_kevin_recovery_dev-channel_mp.tar.xz) 2. Ctrl-Enter to edit name, Ctrl-C, Esc to stop editing 3. Select a file with a short name (chromiumos_test_image.bin) 4. Ctrl-Enter to edit name, Ctrl-V, Enter to save That shows the dialog. Fine, it's a long name. But now: 5. Ctrl-Enter to edit name, "foo", Enter to save That still shows the dialog. "foo" is now considered too long a name. I can't rename any file in the list now because they all result in the same error.
,
Sep 27
,
Sep 27
,
Sep 27
Don't understand why this was merged. This error message occurred for a *three-character name*.
,
Sep 27
Neither techniques described above repro for me, so I merged it to the bug to provide better diagnostics. If I can't repro it without better diagnostics there's not much I can do.
,
Sep 27
So if you have the time, can you take a look at the contents of /var/log/ui/ui.LATEST (or perhaps earlier files in /var/log/ui/) to see if there are any potentially interesting error messages with the string "file_system" in them? We do print our some logs for some of the failure paths, they should land in here.
,
Oct 1
,
Oct 4
,
Oct 5
,
Oct 6
Same issue here on a Pixelbook: 69.0.3497.95 (Official Build) (64-bit) When I save a downloaded file to Google Drive, there aren't any issues, but once I try to save it locally I get the error message even for a 1-character filename.
,
Oct 11
Error messages in the developer console
,
Oct 11
/var/log/ui/ui.20180925-220457:[2670:17942:1010/213459.218839:ERROR:private_api_file_system.cc(91)] Cannot statvfs() the name length limit for: /provided/hlffpaajmfllggclnjppbblobdhokjhe:dropboxfs:%2F%2Fdbid:AACzn78EwGCbkb59ruUmF4DznhjAhZ4rNcE:6ed45404ba2f8d79b347ccd8adce2f157863d5e5/proyectos/
,
Oct 12
The following revision refers to this bug: https://chromium.googlesource.com/chromium/src.git/+/40a6cb9be79a8d05395498a705e59d50cbb77f57 commit 40a6cb9be79a8d05395498a705e59d50cbb77f57 Author: Luciano Pacheco <lucmult@chromium.org> Date: Fri Oct 12 08:02:18 2018 Fix naming issue when renaming files inside My files Change DirectoryModel to "unwrap" VolumeEntry when it's selected via file list. This fixes the issue where after selecting a VolumeEntry any operation in the private API would fail because it wouldn't be able to send a VolumeEntry to private API, because it requires a real Entry. This fixes the user issue of trying to rename and always getting "Use shorter name" error, even with a short name. Update FakeEntry to be an implementation of FilesAppDirEntry, since all users were using as directory, also update some functions to typing to use FilesAppDirEntry instead of FakeEntry which is more correct. Test: browser_tests --gtest_filter="*/myFilesFolderRename" Bug: 889636 Change-Id: Ieb75ffbb811a91e4742fb7a49a3badfd129376ad Reviewed-on: https://chromium-review.googlesource.com/c/1276067 Reviewed-by: Joel Hockey <joelhockey@chromium.org> Commit-Queue: Luciano Pacheco <lucmult@chromium.org> Cr-Commit-Position: refs/heads/master@{#599136} [modify] https://crrev.com/40a6cb9be79a8d05395498a705e59d50cbb77f57/chrome/browser/chromeos/file_manager/file_manager_browsertest.cc [modify] https://crrev.com/40a6cb9be79a8d05395498a705e59d50cbb77f57/ui/file_manager/file_manager/background/js/volume_info_impl.js [modify] https://crrev.com/40a6cb9be79a8d05395498a705e59d50cbb77f57/ui/file_manager/file_manager/common/js/files_app_entry_types.js [modify] https://crrev.com/40a6cb9be79a8d05395498a705e59d50cbb77f57/ui/file_manager/file_manager/common/js/files_app_entry_types_unittest.js [modify] https://crrev.com/40a6cb9be79a8d05395498a705e59d50cbb77f57/ui/file_manager/file_manager/foreground/js/directory_model.js [modify] https://crrev.com/40a6cb9be79a8d05395498a705e59d50cbb77f57/ui/file_manager/file_manager/foreground/js/file_manager.js [modify] https://crrev.com/40a6cb9be79a8d05395498a705e59d50cbb77f57/ui/file_manager/file_manager/foreground/js/file_transfer_controller.js [modify] https://crrev.com/40a6cb9be79a8d05395498a705e59d50cbb77f57/ui/file_manager/file_manager/foreground/js/file_watcher.js [modify] https://crrev.com/40a6cb9be79a8d05395498a705e59d50cbb77f57/ui/file_manager/integration_tests/file_manager/my_files.js
,
Oct 15
Requesting to merge this fix to M-70. I have merged this in a local branch from refs/branch-heads/3538 (M70), resolved the conflicts and tested it locally.
,
Oct 15
This bug requires manual review: We are only 0 days from stable. Please contact the milestone owner if you have questions. Owners: benmason@(Android), kariahda@(iOS), geohsu@(ChromeOS), abdulsyed@(Desktop) For more details visit https://www.chromium.org/issue-tracking/autotriage - Your friendly Sheriffbot
,
Oct 15
,
Oct 15
The following revision refers to this bug: https://chromium.googlesource.com/chromium/src.git/+/8d0c105144240f56de7c48a9ca9bf2c86a47fd02 commit 8d0c105144240f56de7c48a9ca9bf2c86a47fd02 Author: Luciano Pacheco <lucmult@chromium.org> Date: Mon Oct 15 23:28:18 2018 Fix naming issue when renaming files inside My files Change DirectoryModel to "unwrap" VolumeEntry when it's selected via file list. This fixes the issue where after selecting a VolumeEntry any operation in the private API would fail because it wouldn't be able to send a VolumeEntry to private API, because it requires a real Entry. This fixes the user issue of trying to rename and always getting "Use shorter name" error, even with a short name. Update FakeEntry to be an implementation of FilesAppDirEntry, since all users were using as directory, also update some functions to typing to use FilesAppDirEntry instead of FakeEntry which is more correct. Manually merged on M70 branch. Test: browser_tests --gtest_filter="*/myFilesFolderRename" Bug: 889636 Change-Id: Ieb75ffbb811a91e4742fb7a49a3badfd129376ad Reviewed-on: https://chromium-review.googlesource.com/c/1276067 Reviewed-by: Joel Hockey <joelhockey@chromium.org> Commit-Queue: Luciano Pacheco <lucmult@chromium.org> Cr-Original-Commit-Position: refs/heads/master@{#599136} Reviewed-on: https://chromium-review.googlesource.com/c/1282142 Reviewed-by: Luciano Pacheco <lucmult@chromium.org> Cr-Commit-Position: refs/branch-heads/3538@{#1004} Cr-Branched-From: 79f7c91a2b2a2932cd447fa6f865cb6662fa8fa6-refs/heads/master@{#587811} [modify] https://crrev.com/8d0c105144240f56de7c48a9ca9bf2c86a47fd02/chrome/browser/chromeos/file_manager/file_manager_browsertest.cc [modify] https://crrev.com/8d0c105144240f56de7c48a9ca9bf2c86a47fd02/ui/file_manager/file_manager/background/js/mock_volume_manager.js [modify] https://crrev.com/8d0c105144240f56de7c48a9ca9bf2c86a47fd02/ui/file_manager/file_manager/background/js/volume_info_impl.js [modify] https://crrev.com/8d0c105144240f56de7c48a9ca9bf2c86a47fd02/ui/file_manager/file_manager/background/js/volume_manager_impl.js [modify] https://crrev.com/8d0c105144240f56de7c48a9ca9bf2c86a47fd02/ui/file_manager/file_manager/common/js/files_app_entry_types.js [modify] https://crrev.com/8d0c105144240f56de7c48a9ca9bf2c86a47fd02/ui/file_manager/file_manager/common/js/files_app_entry_types_unittest.js [modify] https://crrev.com/8d0c105144240f56de7c48a9ca9bf2c86a47fd02/ui/file_manager/file_manager/common/js/util.js [modify] https://crrev.com/8d0c105144240f56de7c48a9ca9bf2c86a47fd02/ui/file_manager/file_manager/common/js/volume_manager_common.js [modify] https://crrev.com/8d0c105144240f56de7c48a9ca9bf2c86a47fd02/ui/file_manager/file_manager/foreground/js/directory_model.js [modify] https://crrev.com/8d0c105144240f56de7c48a9ca9bf2c86a47fd02/ui/file_manager/file_manager/foreground/js/file_manager.js [modify] https://crrev.com/8d0c105144240f56de7c48a9ca9bf2c86a47fd02/ui/file_manager/file_manager/foreground/js/file_transfer_controller.js [modify] https://crrev.com/8d0c105144240f56de7c48a9ca9bf2c86a47fd02/ui/file_manager/file_manager/foreground/js/file_watcher.js [modify] https://crrev.com/8d0c105144240f56de7c48a9ca9bf2c86a47fd02/ui/file_manager/file_manager/foreground/js/navigation_list_model.js [modify] https://crrev.com/8d0c105144240f56de7c48a9ca9bf2c86a47fd02/ui/file_manager/integration_tests/file_manager/my_files.js
,
Oct 15
To check the fix: The error only happened when clicking on "My files" then clicking on "Downloads" via file list (on the right hand side).
,
Oct 15
The following revision refers to this bug: https://chromium.googlesource.com/chromium/src.git/+/8d0c105144240f56de7c48a9ca9bf2c86a47fd02 Commit: 8d0c105144240f56de7c48a9ca9bf2c86a47fd02 Author: lucmult@chromium.org Commiter: lucmult@chromium.org Date: 2018-10-15 23:28:18 +0000 UTC Fix naming issue when renaming files inside My files Change DirectoryModel to "unwrap" VolumeEntry when it's selected via file list. This fixes the issue where after selecting a VolumeEntry any operation in the private API would fail because it wouldn't be able to send a VolumeEntry to private API, because it requires a real Entry. This fixes the user issue of trying to rename and always getting "Use shorter name" error, even with a short name. Update FakeEntry to be an implementation of FilesAppDirEntry, since all users were using as directory, also update some functions to typing to use FilesAppDirEntry instead of FakeEntry which is more correct. Manually merged on M70 branch. Test: browser_tests --gtest_filter="*/myFilesFolderRename" Bug: 889636 Change-Id: Ieb75ffbb811a91e4742fb7a49a3badfd129376ad Reviewed-on: https://chromium-review.googlesource.com/c/1276067 Reviewed-by: Joel Hockey <joelhockey@chromium.org> Commit-Queue: Luciano Pacheco <lucmult@chromium.org> Cr-Original-Commit-Position: refs/heads/master@{#599136} Reviewed-on: https://chromium-review.googlesource.com/c/1282142 Reviewed-by: Luciano Pacheco <lucmult@chromium.org> Cr-Commit-Position: refs/branch-heads/3538@{#1004} Cr-Branched-From: 79f7c91a2b2a2932cd447fa6f865cb6662fa8fa6-refs/heads/master@{#587811}
,
Oct 16
It started happening to me as well since this past update.
,
Oct 16
Thank you for the fix!
,
Oct 19
This is crazy it's not still actually fixed!
,
Oct 20
This problem is happening to me with my Google Chromebook Pixel LS(2015). I see no "fix" here for ordinary users, like me. Thanks.
,
Oct 21
Hi all, If you're still affected, please share the version you're currently using, you can get it from chrome://version. I think it's just that the fix hasn't been rolled out for you yet. WORKAROUND: Use the directory tree (in the left hand side) to navigate to the directory/file that you want to rename. The issue only happens if you use file list (right hand side) to navigate. Cheers.
,
Oct 22
Version I am using(still affected) is : Version 69.0.3497.120 Thanks!
,
Oct 22
It's fixed from 70 onwards, so this is expected.
,
Oct 22
That will be fine! Thank you very much!!
,
Jan 2
I am still experiencing this issue. Google Chrome 71.0.3578.94 (Official Build) beta (64-bit) Revision 6da2ba233559398092dabd8dc7bc8e78cd758307-refs/branch-heads/3578@{#890} Platform 11151.59.0 (Official Build) beta-channel gandof Firmware Version Google_Gandof.6301.155.9
,
Jan 4
Yes, sill experiencing this issue on Pixelbook on Chrome OS 71.0.3578.98.
,
Jan 5
Still experiencing this issue. Veyron speedy 71.0.3578.94
,
Jan 10
I am having this issue when attempting to download a file to local storage (Downloads folder). Google Chrome 71.0.3578.94 (Official Build) (64-bit) Revision 6da2ba233559398092dabd8dc7bc8e78cd758307-refs/branch-heads/3578@{#890} Platform 11151.59.0 (Official Build) stable-channel nautilus-unibuild (nautilus nautiluslte) Firmware Version Google_Nautilus.10431.81.0
,
Jan 10
I, too, have this issue when downloading a file to local storage(Downloads folder). Chrome OS Version 71.0.3578.94 (Official Build) (64-bit) Platform 11151.59.0 (Official Build) stable-channel samus Firmware Google_Samus.6300.276.0
,
Jan 10
A few minutes after posting my "me too" comment above, I re-tried downloading the file that failed, and it succeeded without giving the error. That was still using the same version of Chrome OS.
,
Jan 11
The issue is also no longer a problem on my Chromebook (fixed by a restart). |
|||||||||||||||||||||||||
►
Sign in to add a comment |
|||||||||||||||||||||||||
Comment 1 by b...@wesort.co.uk
, Sep 2742.0 KB
42.0 KB View Download