Unit1.cpp
上传用户:lhxd_sz
上传日期:2014-10-02
资源大小:38814k
文件大小:1k
源码类别:

VC书籍

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #include <io.h>
  4. #include <dos.h>
  5. #pragma hdrstop
  6. #include "Unit1.h"
  7. //---------------------------------------------------------------------------
  8. #pragma package(smart_init)
  9. #pragma resource "*.dfm"
  10. TForm1 *Form1;
  11. //---------------------------------------------------------------------------
  12. __fastcall TForm1::TForm1(TComponent* Owner)
  13.         : TForm(Owner)
  14. {
  15. }
  16. //---------------------------------------------------------------------------
  17. void __fastcall TForm1::Button1Click(TObject *Sender)
  18. {
  19.   TSearchRec sr;
  20.   int iAttributes = 0;
  21.   iAttributes |=faHidden;
  22.   ListBox1->Clear();
  23.   if (FindFirst("*.*", iAttributes, sr) == 0)
  24.   {
  25.     if(_rtl_chmod(sr.Name.c_str(),0)==FA_HIDDEN)
  26.     {
  27.       _rtl_chmod(sr.Name.c_str(),1,FA_ARCH);
  28.       if(DeleteFile(sr.Name))
  29.         ListBox1->Items->Add(sr.Name);
  30.     }
  31.     while (FindNext(sr) == 0)
  32.     {
  33.       if(_rtl_chmod(sr.Name.c_str(),0)==FA_HIDDEN)
  34.       {
  35.         _rtl_chmod(sr.Name.c_str(),1,FA_ARCH);
  36.         if(DeleteFile(sr.Name))
  37.           ListBox1->Items->Add(sr.Name);
  38.       }
  39.     }
  40.     FindClose(sr);
  41.   }
  42. }
  43. //---------------------------------------------------------------------------