I haven't seen any shortcut for creating "A New Text Document" or any file. Is there any?

link|improve this question

80% accept rate
feedback

6 Answers

up vote 6 down vote accepted

Alt+F, W, T works for me, regardless of whether the file or folder pane has focus.

link|improve this answer
feedback

I wrote a script based on the suggestions to use AutoHotkey. If you want to change the .txt file extension, this requires Hide extentions for known file types to be off.

#IfWinActive, ahk_class CabinetWClass
#n:: ;If Windows+N is pressed in Windows Explorer
Send {Alt} ;Menu
Send f ;> File
Send w ;> New
Send t ;select Text Document
Send ^a ;select all
Exit

If you need any help with AutoHotkey, let me know. :)

link|improve this answer
Where does the limitation on the visible file name extensions come in? – Daniel Beck Jan 26 at 19:44
@DanielBeck Studiohack merged two questions. The one that I originally answered asked if the file extension could be removed. Since we are using .txt, we should select the whole file name including .txt. I've updated my answer to clarify. – iglvzx Jan 26 at 19:46
Thanks iglvzx! I added Send {Delete} because even though everything was selected, typing only deleted the part before the extension. – user745434 Jan 27 at 14:29
feedback

It may be possible with a third party solution (haven't tested it, autokey is famous too), since it's not available in Windows 7's official keyboard shortcuts. You can create a new folder using Ctrl+Shift+N though.

link|improve this answer
feedback

Get AutoHotkey.

Then you need create or find a script for shortcut binding. For more, read the AHK tutorial.

link|improve this answer
So, how does this exactly solve the problem? Which script should they use? – slhck Jan 26 at 18:37
@slhck I'm working on one! Shh. – iglvzx Jan 26 at 18:38
feedback

The following works under XP (I don't have Windows 7):

  • make sure the Files (not Folders) pane has focus (Tab or F6 to get there).
  • make sure no file is selected (press CTRL+Space to unselect one file if necessary).
  • bring up either the File menu with Alt+F or the context menu with the context menu key or Shift+F10.
  • Press W for New, and T for Text Document.
link|improve this answer
1  
This is a looong procedure. Something like Ctrl+Shift+T will do. – CodingTales Apr 21 '10 at 12:07
feedback

I just tried the following on my Swedish Windows 7 machine and it works good. No need to install third party.

  1. Open folder
  2. Press ALT-key to display menubar
  3. A (Swe. Arkiv, Eng. File)
  4. N (Swe. Nytt, Eng. New)
  5. T (Swe. Textdokument, Eng. Textdocument)

Short: ALT, A, N, T

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.