Delete all. SVN files in a directory and Its subdirectories

Source: Internet
Author: User
Create SVN today and add the code. We found that these folders already exist. SVN folder, that is, it has used SVN before, which is a little troublesome. In the brand new SVN, these. SVN needs to be deleted, and it is impossible to manually delete it one by one. I found a large piece of code, untidy code, and don't want to use it. I directly wrote a small Function Code as follows: directly call:
Scanfiles ('C: \ wingsbook '); function scanfiles ($ pfile) {$ dirs = scandir ($ pfile); foreach ($ dirs as $ file) {$ tmpfile = $ pfile. "; if (is_dir ($ tmpfile) & $ file! = '.' & $ File! = '.. ') {If ($ file = '. SVN ') {echo $ tmpfile. "\ r \ n"; Exec ("rmdir/S/Q ". $ tmpfile) ;}else {scanfiles ($ tmpfile );}}}}

 

Here is the Windows version. If there is a Linux version, replace the Directory and change the rmdir command parameter!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.