دلفي تعليم
هل تريد التفاعل مع هذه المساهمة؟ كل ما عليك هو إنشاء حساب جديد ببضع خطوات أو تسجيل الدخول للمتابعة.

حذف مجلد فارغ

اذهب الى الأسفل

حذف مجلد فارغ Empty حذف مجلد فارغ

مُساهمة  djelal 6/5/2020, 12:25 pm

حذف مجلد فارغ
// Delete Folder
using namespace System;
using namespace System::IO;
int main()
{
String^ path = "c:\\Test";
try
{
if ( Directory::Exists( path ) )
{
// Delete the directory exist.
Directory::Delete( path );
} else
Console::WriteLine( "The directory is not exist." );
}
catch ( Exception^ )
{
Console::WriteLine( "The Delete operation failed as expected." );
}
Console::ReadKey();
}

djelal
مبرمج مجتهد

عدد المساهمات : 157
تاريخ التسجيل : 29/04/2015

الرجوع الى أعلى الصفحة اذهب الى الأسفل

حذف مجلد فارغ Empty رد: حذف مجلد فارغ

مُساهمة  djelal 6/5/2020, 12:27 pm


الكود:

using namespace System;
using namespace System::IO;
int main()

  String^ path = "c:\\Test";
  try
  {   
      if ( Directory::Exists( path ) )
      {     
        // Delete the directory exist.
        Directory::Delete( path );
      } else
      Console::WriteLine( "The directory is not exist." );
  }
  catch ( Exception^ )
  {
      Console::WriteLine( "The Delete operation failed as expected." );
  }
  Console::ReadKey();
}

djelal
مبرمج مجتهد

عدد المساهمات : 157
تاريخ التسجيل : 29/04/2015

الرجوع الى أعلى الصفحة اذهب الى الأسفل

الرجوع الى أعلى الصفحة

- مواضيع مماثلة

 
صلاحيات هذا المنتدى:
لاتستطيع الرد على المواضيع في هذا المنتدى