Keyboard Shortcut

  • Thread starter Thread starter Shawn
  • Start date Start date
S

Shawn

Does anyone out there know of keyboard shortcut that will
let you create a new folder? When I'm trying to blast
through an installation or organize files and folders it
is terribly irritating to have to right-click, New Folder
and then you have to move back to the keyboard so to give
it a name. It sure makes it a daunting and irritating
process to have to move back and forth between a keyboard
and a mouse while you create a lot of folders.

I know it sounds petty- but to me, moving, creating and
organizing folders on a file server takes way too long
compared to all of the handy keyboard shortcuts that are
available for other apps and system settings etc.
Ideally, I'd like to open a folder and create as many
folders I want. All folders would name themselves New
Folder 5, New Folder 6 and so on. I could then move files
so quickly and implement new organizational folders while
I tackle a file server reorganization with out the tedious
3 to 4 step process it takes when using the mouse.

I hope there's something out there similar an Outlook
keyboard shortcut where you just hit Ctrl N to make a new
message, contact etc. I hope someone can help me on
this. Free to email if you have any suggestions or ideas.

Thanks,
Shawn
 
Alt+F Enter Enter

You should consider doing some of your bulk administrative
work under a Command Prompt. To create 30 folders of the
type you mention in your post, you would type

for /L %a in (1,1,30) do md "Folder %a"
 
-----Original Message-----
Alt+F Enter Enter

You should consider doing some of your bulk administrative
work under a Command Prompt. To create 30 folders of the
type you mention in your post, you would type

for /L %a in (1,1,30) do md "Folder %a"





.
THANK YOU SO MUCH! THIS IS A DREAM COME TRUE! THANKS!!!
 
Back
Top