|
|
|
ช่วยด้วยค่ะเรื่องการลบ delete folder ไม่สามารถลบออกได้เนื่องจากใน sub folder directory มี file ที่ไม่สามารถลบออกได้ C#.net |
|
|
|
|
|
|
|
ใช้
Code (C#)
Directory.Delete(d, true)
เติม true เข้าไปครับ
|
|
|
|
|
Date :
2012-08-28 13:15:09 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (C#)
Directory.Delete(d, true)
d นี่มันคืออะไรค่ะ
|
|
|
|
|
Date :
2012-08-28 14:57:14 |
By :
แพน |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันคือ Directory ครับ
Code (C#)
using System;
using System.IO;
namespace ConsoleApplication
{
class Program
{
static void Main(string[] args)
{
string topPath = @"C:\NewDirectory";
string subPath = @"C:\NewDirectory\NewSubDirectory";
try
{
Directory.CreateDirectory(subPath);
using (StreamWriter writer = File.CreateText(subPath + @"\example.txt"))
{
writer.WriteLine("content added");
}
Directory.Delete(topPath, true);
bool directoryExists = Directory.Exists(topPath);
Console.WriteLine("top-level directory exists: " + directoryExists);
}
catch (Exception e)
{
Console.WriteLine("The process failed: {0}", e.Message);
}
}
}
}
|
|
|
|
|
Date :
2012-08-28 20:46:04 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณค่ะ
|
|
|
|
|
Date :
2012-08-29 15:21:03 |
By :
แพน |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2012-08-29 15:50:54 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|