Skip to content

Instantly share code, notes, and snippets.

@zhanglintc
Created May 30, 2024 11:33
Show Gist options
  • Save zhanglintc/430e04590a64c7673eaf174a9f3634a3 to your computer and use it in GitHub Desktop.
Save zhanglintc/430e04590a64c7673eaf174a9f3634a3 to your computer and use it in GitHub Desktop.
@echo off
SET var=C:\Folder1\Folder2\File.txt
echo before: %var%
call :getFolder "%var%" var
echo after: %var%
exit /b
:getFolder
set "%2=%~dp1"
exit /b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment