Create a directory with name = current date

Far Manager Macro System

Create a directory with name = current date


Macro {
  description="Create a directory with name = current date";
  area="Shell"; key="CtrlShiftF7"; flags="NoPluginPanels";
  action=function()
    folder = mf.date("%d.%m0.%Y")
    if Panel.FExist(0,folder)==0 then
      Keys"F7 CtrlY"
      print(folder)
      Keys"Enter"
    end
  end;
}