আমি ব্যাট ফাইল ব্যবহার করে সমস্ত ফাইল এবং সাবফোল্ডার সহ একটি ফোল্ডার মুছতে চাই।
আমি নিম্নলিখিত চেষ্টা করেছি, কিন্তু এটি কার্যকর হয় না:
@DEL D:\PHP_Projects\testproject\Release\testfolder*.*
কেউ সাহায্য করতে পারেন?
আমি ব্যাট ফাইল ব্যবহার করে সমস্ত ফাইল এবং সাবফোল্ডার সহ একটি ফোল্ডার মুছতে চাই।
আমি নিম্নলিখিত চেষ্টা করেছি, কিন্তু এটি কার্যকর হয় না:
@DEL D:\PHP_Projects\testproject\Release\testfolder*.*
কেউ সাহায্য করতে পারেন?
উত্তর:
@RD /S /Q "D:\PHP_Projects\testproject\Release\testfolder"
ব্যাখ্যা :
একটি ডিরেক্টরি মুছে ফেলে (মুছে ফেলা)।
RMDIR [/S] [/Q] [drive:]path RD [/S] [/Q] [drive:]path /S Removes all directories and files in the specified directory in addition to the directory itself. Used to remove a directory tree. /Q Quiet mode, do not ask if ok to remove a directory tree with /S
del /s /q c:\where ever the file is\*
rmdir /s /q c:\where ever the file is\
mkdir c:\where ever the file is\
ডেল / এস / কিউসি: \ যেখানে ফাইলটি কখনও *
এটি ফোল্ডার এবং সাবফোল্ডারগুলির সমস্ত ফাইল মুছে ফেলে তবে খালি সাবফোল্ডারগুলি ফেলে দেয়
with all files and subfolders