ঠিক আছে, আপনার ব্যাচের ফাইলের নাম পাওয়ার জন্য সবচেয়ে সহজ উপায় হ'ল কেবল ব্যবহার করা %~n0
।
@echo %~n0
বর্তমানে চলমান ব্যাচ ফাইলটির নাম (এক্সটেনশন ছাড়াই) আউটপুট দেবে (যদি না বলা সাব্রোটিনে মৃত্যুদণ্ড কার্যকর করা হয় call
)। help for
সহায়তার একেবারে শেষে, পথের নামের জন্য এই জাতীয় "বিশেষ" বিকল্পগুলির সম্পূর্ণ তালিকা পাওয়া যাবে :
এছাড়াও, পরিবর্তনশীল রেফারেন্সের বিকল্প প্রতিস্থাপন উন্নত করা হয়েছে। আপনি এখন নিম্নলিখিত alচ্ছিক বাক্য গঠন ব্যবহার করতে পারেন:
%~I - expands %I removing any surrounding quotes (")
%~fI - expands %I to a fully qualified path name
%~dI - expands %I to a drive letter only
%~pI - expands %I to a path only
%~nI - expands %I to a file name only
%~xI - expands %I to a file extension only
%~sI - expanded path contains short names only
%~aI - expands %I to file attributes of file
%~tI - expands %I to date/time of file
%~zI - expands %I to size of file
%~$PATH:I - searches the directories listed in the PATH
environment variable and expands %I to the
fully qualified name of the first one found.
If the environment variable name is not
defined or the file is not found by the
search, then this modifier expands to the
empty string
সংশ্লেষ ফলাফলগুলি সংশোধনকারীদের একত্রিত করা যেতে পারে:
%~dpI - expands %I to a drive letter and path only
%~nxI - expands %I to a file name and extension only
%~fsI - expands %I to a full path name with short names only
আপনার প্রশ্নের যথাযথভাবে উত্তর দিতে, তবে: সাবস্ট্রিংগুলি :~start,length
স্বরলিপিটি ব্যবহার করে করা হয়:
%var:~10,5%
পরিবেশ পরিবর্তনশীলের অবস্থান 10 থেকে 5 টি অক্ষর বের করবে %var%
।
দ্রষ্টব্য: স্ট্রিংগুলির সূচকটি শূন্য ভিত্তিক, সুতরাং প্রথম অক্ষরটি 0 তে অবস্থিত, দ্বিতীয়টি 1 এ, ইত্যাদি is
আর্গুমেন্ট ভেরিয়েবলের সাবস্ট্রিংগুলি যেমন %0
, %1
ইত্যাদি ইত্যাদি পেতে আপনাকে set
প্রথমে এগুলি ব্যবহার করে একটি সাধারণ পরিবেশের পরিবর্তনশীলকে নির্ধারণ করতে হবে :
:: Does not work:
@echo %1:~10,5
:: Assign argument to local variable first:
set var=%1
@echo %var:~10,5%
বাক্য গঠন আরও বেশি শক্তিশালী:
%var:~-7%
থেকে শেষ 7 অক্ষর নিষ্কাশন %var%
%var:~0,-4%
শেষ চারটি ব্যতীত সমস্ত অক্ষর নিষ্কাশন করবে যা আপনাকে ফাইলের সম্প্রসারণ থেকেও মুক্তি দিতে পারে (পিরিয়ডের পরে তিনটি অক্ষর ধরে রেখে .
))
help set
সেই বাক্য গঠন সম্পর্কে বিশদ জানতে দেখুন ।
setlocal ENABLEDELAYEDEXPANSION \r\n for /f %%s in ('set') do ( \r\n set tmp=%%s \r\n echo !tmp:~-3! \r\n )