05 نوفمبر 2011

Create multiple numbered folders easily إنشاء أى عدد من المجلدات المرقمة بسهولة

Sometimes we need to create multiple numbered folders, so many that it takes ages to create manually. To save time, we can use a batch file to do this automatically for us.
Its very easy: download the batch file from here, or copy and paste the following lines in your text editor (notepad or gedit for example)

@echo off & setlocal
set /P no=How many folders would you like to create?^>
set /A no
for /L %%j in (1 1 %no%) do if not exist %%j md %%j

make sure you save it as a .bat file
for example, name it: numberedFoldersCreator.bat

Now, copy that file and paste it inside the folder where you want the numbered folders to be, and double click the file.
A window will ask you how many numbered folders you need. Once you type the number and hit the Enter key, they will all be created for you instantly
That's it


أحياناً نحتاج الى إنشاء مجلدات مرقمة - مثلاً من 1 الى 100 أو 1000 أو أكثر - ولا يكون عملياً أن ننشئ كل هذا العدد يدوياً
فى هذه الحالة - وتوفيراً للوقت - يمكنكم إستخدام باتش فايل batch file ليقوم بإنشاء المجلدات لك بطريقة أوتوماتيكية
الطريقة سهلة جداً: فقط قم بتنزيل الملف من هنا - أو إفتح notepad أو أى محرر نصى مثل gedit وإنسخ فيه السطور التالية

@echo off & setlocal
set /P no=How many folders would you like to create?^>
set /A no
for /L %%j in (1 1 %no%) do if not exist %%j md %%j

ثم إحفظ الملف بصيغة bat وليس txt
يعنى سميه مثلاً numberedFoldersCreator.bat
بعد ذلك إنسخ هذا الملف وضعه داخل المجلد الذى تريد إنشاء المجلدات المرقمه بداخله - ثم إضغط عليع مرتين
ستظهر لك شاشة تسألك عن عدد المجلدات المطلوبة - أكتب العدد ثم إضغط على زر Enter
وفوراً ستجد عدد المجلدات التى طلبتها قد أنشئت لك مرقمة ومرتبة حسب طلبك

ليست هناك تعليقات:

إرسال تعليق