2014-04-04 8 views
16

बैच में, मैं डिस्क c:\ पर विभिन्न फ़ोल्डर्स में सभी फ़ाइलों * .bak को हटाना चाहता हूं।
क्या कोई मेरी मदद कर सकता है?बैच फ़ाइल के साथ फ़ाइलों को हटाने के लिए बैच फ़ाइल

पूर्व .:

all c: 
del *.bak /s /a 

धन्यवाद।

उत्तर

22

यह एक आदेश हो सकता है।

del /s /q /f c:\*.bak 
12

वैश्विक हटाए जाने से बेहद सावधान रहें! आप से अधिक पूछ सकते हैं, विशेष रूप से सिरदर्द के रास्ते में और आपके सिस्टम को बहाल करने के समय में।

कि किया जा रहा है के साथ कहा:

C: 
cd \ 
del /s /q /f *.bak 

अधिक जानकारी के लिए कमांड प्रॉम्प्ट, जो आप इस विंडोज 7 में देता से प्रकार del /?:

Deletes one or more files. 

DEL [/P] [/F] [/S] [/Q] [/A[[:]attributes]] names 
ERASE [/P] [/F] [/S] [/Q] [/A[[:]attributes]] names 

    names   Specifies a list of one or more files or directories. 
       Wildcards may be used to delete multiple files. If a 
       directory is specified, all files within the directory 
       will be deleted. 

    /P   Prompts for confirmation before deleting each file. 
    /F   Force deleting of read-only files. 
    /S   Delete specified files from all subdirectories. 
    /Q   Quiet mode, do not ask if ok to delete on global wildcard 
    /A   Selects files to delete based on attributes 
    attributes R Read-only files   S System files 
       H Hidden files    A Files ready for archiving 
       I Not content indexed Files L Reparse Points 
       - Prefix meaning not 

If Command Extensions are enabled DEL and ERASE change as follows: 

The display semantics of the /S switch are reversed in that it shows 
you only the files that are deleted, not the ones it could not find. 
संबंधित मुद्दे