Download nhạc từ các trang nhạc lớn của Việt Nam

C# :
Hàm chính :

public static double DirectorySize(DirectoryInfo dirInfo)
{
   double total = 0;
   try
   {
      foreach(FileInfo file in dirInfo.GetFiles())
      {
         total += file.Length; 
      } 
      foreach(DirectoryInfo dir in dirInfo.GetDirectories())
      {
         total += DirectorySize(dir); 
      }
   }
   catch
   {
      return 0;
   }
   return total;
}


directorysize.jpg

Download Binary file(Zip)

Họ tên
E-mail
(sẽ hiển thị gravatar theo email của bạn)
Trang chủ
Bộ gõ Tắt TELEX VNI
Ý kiến (Không dùng HTML)  

Nhập mã kiểm tra :(chống xì-pum ý mà):