visual-studio-codefile-manager

FileManager-Actions in wrong directory


I want to create an action to open in VS Code with FileManager-Actions. The problem is that whenever I execute the action, it opens VS Coded on the parent directory. For example if I want to execute the action on main/second/third it opens the editor on main/second This is my FileManager configuration

I also Tried changing the Working directory or Parameters but to no avail. Does anyone know the correct configuration?


Solution

  • I've found the solution on this page. It said:

    %d (first) base directory
    %f The path to the first selected file

    Though %f represents the selected file, it can also be the current folder path when right click on the blank space in the a folder. So I replaced %d with %f and solved this problem. Hope it can help you.