Add current directory to PATH

Is there a way to add the current (the one you're currently in) directory to PATH without having to type it manually; for example

f:\TEMP\Add directory f:\TEMP to PATH without having to do

set PATH=%PATH%;f:\TEMP;

%CD% expands to current directory.

So you can use:

set PATH=%PATH%;%CD%