Windows 10 Home 22H2
If I open a Windows Explorer window on a given folder, highlight a file
and type Ctrl-C (or right-click and select copy), and then go to another folder and right-click and select Paste...
I occasionally find that Paste is greyed-out, as if the Ctrl-C or right-click Copy has failed to be "noticed".
It's a operation that I perform so often and so automatically that I
*may* occasionally be mis-typing (eg Shift-C rather than Ctrl-C). It's
no hardship to go back to the source folder and Ctrl-C again, but I
wondered whether it is just my clumsy fingers or whether anyone else has experienced the same thing.
On 15/12/2024 23:05, NY wrote:
Windows 10 Home 22H2
If I open a Windows Explorer window on a given folder, highlight a
file and type Ctrl-C (or right-click and select copy), and then go
to another folder and right-click and select Paste...
I occasionally find that Paste is greyed-out, as if the Ctrl-C or
right-click Copy has failed to be "noticed".
It's a operation that I perform so often and so automatically that I
*may* occasionally be mis-typing (eg Shift-C rather than
Ctrl-C). It's no hardship to go back to the source folder and Ctrl-C
again, but I wondered whether it is just my clumsy fingers or
whether anyone else has experienced the same thing.
I get that occasionally in Windows 8.1. Paste not greyed out, it just
fails to work so have to retry.
Windows 10 Home 22H2
If I open a Windows Explorer window on a given folder, highlight a file
and type Ctrl-C (or right-click and select copy), and then go to another folder and right-click and select Paste...
I occasionally find that Paste is greyed-out, as if the Ctrl-C or right-click Copy has failed to be "noticed".
It's a operation that I perform so often and so automatically that I
*may* occasionally be mis-typing (eg Shift-C rather than Ctrl-C). It's
no hardship to go back to the source folder and Ctrl-C again, but I
wondered whether it is just my clumsy fingers or whether anyone else has experienced the same thing.
On 12/15/2024 6:05 PM, NY wrote:
Windows 10 Home 22H2
If I open a Windows Explorer window on a given folder, highlight a file and type Ctrl-C (or right-click and select copy), and then go to another folder and right-click and select Paste...
I occasionally find that Paste is greyed-out, as if the Ctrl-C or right-click Copy has failed to be "noticed".
It's a operation that I perform so often and so automatically that I *may* occasionally be mis-typing (eg Shift-C rather than Ctrl-C). It's no hardship to go back to the source folder and Ctrl-C again, but I wondered whether it is just my clumsy fingers or whether anyone else has experienced the same thing.
ÿ I've never noticed that, but I've never used Ctrl+C and don't often
use right-click unless it's for Cut or for a large number of files in one location that I've lasso selected. For Copy I usually just open both
folders and drag-drop. Or I drop onto shortcuts. Or I use my extensive
SendTo list. I can't say that I remember a case of any of those failing.
ÿ But I'm happy to complain. :) The process is so ridiculously overproduced. It used to be that if the file existed, it just asked whether I want to overwrite. Now it pops up an extensive instruction window. Then,
whether I choose to still copy the file over or not it shows a ridiculous progress window. 3 seconds to not move 30KB! It's as though the
Microsofties think the main reason for moving files is to show their special effects.
ÿ A lot of my copying is to move saved files from the Desktop to storage.
For that I like to use VBScripts in the SendTo folder. For instance, if I right-click SendTo Seccurity then the file/folder is copied to a security articles
folder in 2 different partitions on 2 redundant drives, all in one step. It then
pops up a message to tell me either that they were copied or that existing copies were replaced... All in less time than it takes for Win10 to show
me a graphic demonstrating that a file was not copied to anywhere.
The File Explorer, is one huge collection of the most daft code.
I was trying to delete. One folder of stuff in the Servicing\LCU folder.
The deletion dialog counts to 57000 items or so, and where normally the >"blowing sheets to the breeze" part would begin, it just stopped. It
did that twice, me canceling in both cases.
I flipped over to Terminal
and used the MSDOS "del" command, and that worked fine.
In a Win10 VM, I used
sdelete -z C:
which is used to flush white space with zeros (before doing
a Compact of the container). The command gets about 99% done and
stops. Up pops a notification "I have turned on Storage Sense
for you, you can thank me later". I reach into Settings and
turn Storage Sense off, and... the sdelete program will still
not finish what it was doing. I had to run it again, and on the
second run, it worked properly.
Yes, the code in there is "some kinda special".
On Thu, 19 Dec 2024 15:45:18 -0500, Paul <nospam@needed.invalid> wrote:
The File Explorer, is one huge collection of the most daft code.
I was trying to delete. One folder of stuff in the Servicing\LCU folder.
The deletion dialog counts to 57000 items or so, and where normally the
"blowing sheets to the breeze" part would begin, it just stopped. It
did that twice, me canceling in both cases.
If you hadn't canceled, it very likely would have eventually appeared to come back to life. In reality, the operation wasn't really paused at all. Only the graphical display appeared to be paused. Behind the scenes, I'd bet it was still
churning away.
If you're deleting *to* the Recycle Bin, or deleting *from* the Recycle Bin, there's a bunch of stuff going on behind the scenes. Deleting *to* the Bin requires each item to be renamed, with the original name and the new name being
stored somewhere together. Deleting *from* the Bin requires loading the file containing the list of original file names and the corresponding new names into
memory, then for each item the original name has to be looked up to get the new
name, delete file with new name, update file of new-old names, update File Explorer view, do next, etc. It's a lot, and it doesn't scale well, but then Recycle Bin isn't a regular folder.
I frequently delete batches of 25,000 to 40,000 photos, but once the total was
around 130,000 photos, so I'm used to seeing minutes worth of no display updates
and gigabytes of memory being gobbled up. After working with large numbers of files like that, it's normal to check File Explorer memory usage and seeing upwards of 40GB being used. Over time, it falls back to a more reasonable value,
without requiring a reboot.
I flipped over to Terminal
and used the MSDOS "del" command, and that worked fine.
In a Win10 VM, I used
sdelete -z C:
which is used to flush white space with zeros (before doing
a Compact of the container). The command gets about 99% done and
stops. Up pops a notification "I have turned on Storage Sense
for you, you can thank me later". I reach into Settings and
turn Storage Sense off, and... the sdelete program will still
not finish what it was doing. I had to run it again, and on the
second run, it worked properly.
Yes, the code in there is "some kinda special".
As stated above, the Recycle Bin is far from being a regular folder. It works well enough when you keep the file count low, but it doesn't always scale well.
I don't think I've ever seen an official description of the renaming scheme that
goes on in there, but I suppose it exists somewhere. In short, when you view the
Recycle Bin in File Explorer, just keep in mind that there are no files actually
stored there with those names. Each of the names that you see is actually mapped
to the renamed file. Some file managers show you the actual file names, but File
Explorer doesn't (by design).
Sysop: | Tetrazocine |
---|---|
Location: | Melbourne, VIC, Australia |
Users: | 4 |
Nodes: | 8 (0 / 8) |
Uptime: | 190:18:53 |
Calls: | 62 |
Files: | 21,500 |
Messages: | 70,947 |