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;
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
add a comment |
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
add a comment |
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
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
linux unix
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
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Maybe this would do the trick for you:
x=/path/to/file/filename.txt
y=$x%/*
echo $y
you should get
/path/to/file
add a comment |
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/
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Maybe this would do the trick for you:
x=/path/to/file/filename.txt
y=$x%/*
echo $y
you should get
/path/to/file
add a comment |
Maybe this would do the trick for you:
x=/path/to/file/filename.txt
y=$x%/*
echo $y
you should get
/path/to/file
add a comment |
Maybe this would do the trick for you:
x=/path/to/file/filename.txt
y=$x%/*
echo $y
you should get
/path/to/file
Maybe this would do the trick for you:
x=/path/to/file/filename.txt
y=$x%/*
echo $y
you should get
/path/to/file
answered Mar 27 at 20:13
Hector HernandezHector Hernandez
112 bronze badges
112 bronze badges
add a comment |
add a comment |
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/
add a comment |
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/
add a comment |
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/
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/
answered Mar 27 at 21:03
Viraj PatilViraj Patil
11 bronze badge
11 bronze badge
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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