using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.IO;
|
|
namespace CY_DocumentFileWCFService
|
{
|
public static class FileHelper
|
{
|
|
public static void CreateDirtory(string path)
|
{
|
if (!File.Exists(path))
|
{
|
string[] dirArray = path.Split('\\');
|
string temp = string.Empty;
|
for (int i = 0; i < dirArray.Length - 1; i++)
|
{
|
temp += dirArray[i].Trim() + "\\";
|
if (!Directory.Exists(temp))
|
Directory.CreateDirectory(temp);
|
}
|
}
|
}
|
|
public static bool IsExists(string filePath)
|
{
|
return File.Exists(filePath);
|
}
|
|
public static void DelFile(string filePath)
|
{
|
File.Delete(filePath);
|
}
|
|
public static void CreateDirtory2(string pathDir)
|
{
|
if (!Directory.Exists(pathDir))
|
{
|
Directory.CreateDirectory(pathDir);
|
}
|
}
|
}
|
}
|