1
vote
Adding item to the Desktop context menu in Windows
Such a handler must be registered in HKCR\Directory\Background, instead of usual locations like HKCR\Directory, HKCR\Folder, etc.
Check out …
8
votes
What does %~d0 mean in a Windows batch file?
They are enhanced variable substitutions. They modify the %N variables used in batch files. Quite useful if you're into batch programming in Windows.
%~I - expands %I removi …
5
votes
UTF-8 in Windows
Unfortunately, there is no way to make Unicode the current codepage in Windows. The CP_UTF7 and CP_UTF8 constants are pseudo-codepages, used only in …
5
votes
How do you get a directory listing sorted by creation date in python?
Here's my version:
def getfiles(dirpath):
a = [s for s in os.listdir(dirpath)
if os.path.isfile(os.path.join(dirpath, s))]
a.sort(key=lambda s: os.path.getmtime(os. …
7
votes
Detecting Mouse clicks in windows using python
The only way to detect mouse events outside your program is to install a Windows hook using SetWindowsHookEx …
0
votes
Looping over directories in Windows XP command prompt
You can use "%~ni". This is an enhanced substitution that will return the file name of a path (or, more accurately, the last part, which is the directory name in your case):
for /d …
3
votes
What do I have to do to make my WH_SHELL or WH_CBT hook procedure receive events from other processes?
The problem is that your hook DLL is actually being loaded into several different address spaces. Any time Windows detects an event in some foreign process that must be processed by your hook, it l …
2
votes
Re-assign/override hotkey (Win + L) to lock windows
The Win+L is a system assigned hotkey and there's no option to disable it. This means there's no way for an application to detect it, unless you use a …
11
votes
What is the best way to test whether a file exists on Windows?
According to the venerable Raymond Chen, you should use GetFileAttributes if you're superstitious. …
2
votes
How to cancel the ‘system key down’ state in Windows
When you release the Alt key, the system generates a WM_SYSCOMMAND/SC_KEYMENU message. Futhermore, unless you press a key to open a specific popup menu, the lparam will be …
