remove file name in a file pathHow to split a string in shell and get the last fieldHow can I extract a predetermined range of lines from a text file on Unix?Use grep --exclude/--include syntax to not grep through certain filesList files recursively in Linux CLI with path relative to the current directoryIn the shell, what does “ 2>&1 ” mean?Shell command to tar directory excluding certain files/foldersLooping through the content of a file in BashHow to symlink a file in Linux?How to get full path of a file?How can I use grep to show just filenames on Linux?How do I find all files containing specific text on Linux?

Semantic difference between regular and irregular 'backen'

How to gently end involvement with an online community?

What are the occurences of total war in the Native Americans?

Unlock your Lock

Cost of oil sanctions to world's consumers

Can an Arcane Focus be embedded in one's body?

How to check whether a sublist exist in a huge database lists in a fast way?

When, exactly, does the Rogue Scout get to use their Skirmisher ability?

Can an ISO file damage—or infect—the machine it's being burned on?

Hangman game in Python - need feedback on the quality of code

Where does learning new skills fit into Agile?

Why does a sticker slowly peel off, but if it is pulled quickly it tears?

Who was the most successful German spy against Great Britain in WWII, from the contemporary German perspective?

How does the OS tell whether an "Address is already in use"?

Tex Quotes(UVa 272)

Can Orcus use Multiattack with any melee weapon?

Make utility using LINQ

Convergence of series of normally distributed random variables

Expressing the act of drawing

Half filled water bottle

Retroactively modifying humans for Earth?

Why error propagation in CBC mode encryption affect two blocks?

Prevent use of CNAME record for untrusted domain

Cooking Scrambled Eggs



remove file name in a file path


How to split a string in shell and get the last fieldHow can I extract a predetermined range of lines from a text file on Unix?Use grep --exclude/--include syntax to not grep through certain filesList files recursively in Linux CLI with path relative to the current directoryIn the shell, what does “ 2>&1 ” mean?Shell command to tar directory excluding certain files/foldersLooping through the content of a file in BashHow to symlink a file in Linux?How to get full path of a file?How can I use grep to show just filenames on Linux?How do I find all files containing specific text on Linux?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I want to extract the only path to the file from a full path.



for %a in (/path/to/file/filename.txt) do echo %%~dpa



example:



/some/path/to/file/filename.txt



I want to get the only path like



/some/path/to/file/










share|improve this question
































    0















    I want to extract the only path to the file from a full path.



    for %a in (/path/to/file/filename.txt) do echo %%~dpa



    example:



    /some/path/to/file/filename.txt



    I want to get the only path like



    /some/path/to/file/










    share|improve this question




























      0












      0








      0








      I want to extract the only path to the file from a full path.



      for %a in (/path/to/file/filename.txt) do echo %%~dpa



      example:



      /some/path/to/file/filename.txt



      I want to get the only path like



      /some/path/to/file/










      share|improve this question
















      I want to extract the only path to the file from a full path.



      for %a in (/path/to/file/filename.txt) do echo %%~dpa



      example:



      /some/path/to/file/filename.txt



      I want to get the only path like



      /some/path/to/file/







      linux unix






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 27 at 20:00









      shreyshrey

      561 silver badge13 bronze badges




      561 silver badge13 bronze badges










      asked Mar 27 at 19:51









      SudhakarSudhakar

      123 bronze badges




      123 bronze badges

























          2 Answers
          2






          active

          oldest

          votes


















          0















          Maybe this would do the trick for you:



          x=/path/to/file/filename.txt

          y=$x%/*

          echo $y


          you should get



          /path/to/file






          share|improve this answer
































            0















            You can use string operations to parse the file_name out (https://stackoverflow.com/a/3162500).



            Delete the shortest matching file_name from the end of full_path using % operator.



            full_path=/path/to/file/filename.txt
            file_name=$full_path##*/
            echo "$full_path%$file_name"


            Replace full_path with your desired input and it will return /path/to/file/






            share|improve this answer



























              Your Answer






              StackExchange.ifUsing("editor", function ()
              StackExchange.using("externalEditor", function ()
              StackExchange.using("snippets", function ()
              StackExchange.snippets.init();
              );
              );
              , "code-snippets");

              StackExchange.ready(function()
              var channelOptions =
              tags: "".split(" "),
              id: "1"
              ;
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function()
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled)
              StackExchange.using("snippets", function()
              createEditor();
              );

              else
              createEditor();

              );

              function createEditor()
              StackExchange.prepareEditor(
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader:
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              ,
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              );



              );













              draft saved

              draft discarded


















              StackExchange.ready(
              function ()
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55385406%2fremove-file-name-in-a-file-path%23new-answer', 'question_page');

              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              0















              Maybe this would do the trick for you:



              x=/path/to/file/filename.txt

              y=$x%/*

              echo $y


              you should get



              /path/to/file






              share|improve this answer





























                0















                Maybe this would do the trick for you:



                x=/path/to/file/filename.txt

                y=$x%/*

                echo $y


                you should get



                /path/to/file






                share|improve this answer



























                  0














                  0










                  0









                  Maybe this would do the trick for you:



                  x=/path/to/file/filename.txt

                  y=$x%/*

                  echo $y


                  you should get



                  /path/to/file






                  share|improve this answer













                  Maybe this would do the trick for you:



                  x=/path/to/file/filename.txt

                  y=$x%/*

                  echo $y


                  you should get



                  /path/to/file







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Mar 27 at 20:13









                  Hector HernandezHector Hernandez

                  112 bronze badges




                  112 bronze badges


























                      0















                      You can use string operations to parse the file_name out (https://stackoverflow.com/a/3162500).



                      Delete the shortest matching file_name from the end of full_path using % operator.



                      full_path=/path/to/file/filename.txt
                      file_name=$full_path##*/
                      echo "$full_path%$file_name"


                      Replace full_path with your desired input and it will return /path/to/file/






                      share|improve this answer





























                        0















                        You can use string operations to parse the file_name out (https://stackoverflow.com/a/3162500).



                        Delete the shortest matching file_name from the end of full_path using % operator.



                        full_path=/path/to/file/filename.txt
                        file_name=$full_path##*/
                        echo "$full_path%$file_name"


                        Replace full_path with your desired input and it will return /path/to/file/






                        share|improve this answer



























                          0














                          0










                          0









                          You can use string operations to parse the file_name out (https://stackoverflow.com/a/3162500).



                          Delete the shortest matching file_name from the end of full_path using % operator.



                          full_path=/path/to/file/filename.txt
                          file_name=$full_path##*/
                          echo "$full_path%$file_name"


                          Replace full_path with your desired input and it will return /path/to/file/






                          share|improve this answer













                          You can use string operations to parse the file_name out (https://stackoverflow.com/a/3162500).



                          Delete the shortest matching file_name from the end of full_path using % operator.



                          full_path=/path/to/file/filename.txt
                          file_name=$full_path##*/
                          echo "$full_path%$file_name"


                          Replace full_path with your desired input and it will return /path/to/file/







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Mar 27 at 21:03









                          Viraj PatilViraj Patil

                          11 bronze badge




                          11 bronze badge






























                              draft saved

                              draft discarded
















































                              Thanks for contributing an answer to Stack Overflow!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid


                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.

                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function ()
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55385406%2fremove-file-name-in-a-file-path%23new-answer', 'question_page');

                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                              Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                              Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript