C# 클래스 FileUtil, UnityFramework

파일 보기 프로젝트 열기: meta-42/uEasyKit 1 사용 예제들

공개 메소드들

메소드 설명
CoverFile ( string pathName, string content ) : void

覆盖文件 [没有会创建]

CreateFile ( string pathName ) : StreamWriter,

创建文件

CreateFolder ( string pathName ) : DirectoryInfo,

创建文件夹

DeleteFile ( string pathName ) : bool

删除文件

GetAllFileSize ( string folderName ) : int

返回文件夹大小

GetFileSize ( string path, string fileName ) : int

返回文件大小

ReadFile ( string pathName ) : string
ReadFile ( string pathName, string filenme ) : string

读文件

ReadFileWithByte ( string pathName ) : byte[]
WriteFileFromEnd ( string pathName, string content ) : void

写文件 [没有会创建]

WriteFileLineFromEnd ( string pathName, string content ) : void

写文件 按行写入[没有会创建]

메소드 상세

CoverFile() 공개 정적인 메소드

覆盖文件 [没有会创建]
public static CoverFile ( string pathName, string content ) : void
pathName string
content string
리턴 void

CreateFile() 공개 정적인 메소드

创建文件
public static CreateFile ( string pathName ) : StreamWriter,
pathName string
리턴 StreamWriter,

CreateFolder() 공개 정적인 메소드

创建文件夹
public static CreateFolder ( string pathName ) : DirectoryInfo,
pathName string
리턴 DirectoryInfo,

DeleteFile() 공개 정적인 메소드

删除文件
public static DeleteFile ( string pathName ) : bool
pathName string
리턴 bool

GetAllFileSize() 공개 정적인 메소드

返回文件夹大小
public static GetAllFileSize ( string folderName ) : int
folderName string
리턴 int

GetFileSize() 공개 정적인 메소드

返回文件大小
public static GetFileSize ( string path, string fileName ) : int
path string
fileName string
리턴 int

ReadFile() 공개 정적인 메소드

public static ReadFile ( string pathName ) : string
pathName string
리턴 string

ReadFile() 공개 정적인 메소드

读文件
public static ReadFile ( string pathName, string filenme ) : string
pathName string
filenme string
리턴 string

ReadFileWithByte() 공개 정적인 메소드

public static ReadFileWithByte ( string pathName ) : byte[]
pathName string
리턴 byte[]

WriteFileFromEnd() 공개 정적인 메소드

写文件 [没有会创建]
public static WriteFileFromEnd ( string pathName, string content ) : void
pathName string
content string
리턴 void

WriteFileLineFromEnd() 공개 정적인 메소드

写文件 按行写入[没有会创建]
public static WriteFileLineFromEnd ( string pathName, string content ) : void
pathName string
content string
리턴 void