0

I would like to list files in a directory as in the following picture enter image description here source: https://stackoverflow.com/a/49472114/6747994 author: @ocodo license: CC-BY-SA 4.0

Drew
  • 29,895
  • 7
  • 74
  • 104
JoKalliauer
  • 1,648
  • 1
  • 13
  • 17
  • you're screen is showing `M-x dired`, which is normally how you would list a directory, see also `dired-jump`, since you're using `projectile`, you also have `projectile-dired` – Rorschach Mar 06 '20 at 14:07

2 Answers2

2
  • C-x d opens Dired on the directory you mention letting you perform actions on files that you mark in the list.

  • C-x C-d lists the directory. Similar to Dired, but without the possibility to act on listed files.

See the Emacs manual, node Dired Enter.

Drew
  • 29,895
  • 7
  • 74
  • 104
0

hit C-x C-f Source: Files Listed in Emacs Find-Files

this means

  • Open Emacs (Terminal)
    • Press Super-Key (also known as Windows-Key) and release
    • type emacs
    • click on GNU Emacs 25 (Ter... or similar
  • Press ctrl & x on the keyboard at the same time, then release both keys
  • Press ctrl & f on the keyboard at the same time, then release both keys
  • type in the folder-path, where you want to navigate
JoKalliauer
  • 1,648
  • 1
  • 13
  • 17