मैं बैट फाइल का उपयोग करके सभी फ़ाइलों और सबफ़ोल्डरों के साथ एक फ़ोल्डर हटाना चाहता हूं।
मैंने निम्नलिखित कोशिश की है, लेकिन यह काम नहीं कर रहा है:
@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\
डेल / एस / qc: \ कभी फ़ाइल कहाँ है *
यह फ़ोल्डर और सबफ़ोल्डर में सभी फ़ाइलों को हटा देता है, लेकिन खाली सबफ़ोल्डर छोड़ देता है
with all files and subfolders