How do I create a directory from within Emacs?

前端 未结 6 2061
夕颜
夕颜 2021-01-29 20:15

How exactly can I create a new directory using Emacs? What commands do I use? (If possible, please provide an example)

6条回答
  •  无人及你
    2021-01-29 20:51

    I guess I did it the hard way earlier today. I did:

    M-x shell-command
    

    then

    mkdir -p topdir/subdir
    

提交回复
热议问题