file_io.h

来自「Dos6.0」· C头文件 代码 · 共 32 行

H
32
字号
/***************************************************************************/
/*																									*/
/*	FILE_IO.H																					*/
/*																									*/
/*		Copyright (c) 1991 - Microsoft Corp.											*/
/*		All rights reserved.																	*/
/*		Microsoft Confidential																*/
/*																									*/
/* Created 10-28-89 johnhe																	*/
/* Updated 06-09-92 royha	- Added file attributes 									*/
/***************************************************************************/


/* File attributes */

#ifndef SLASH
  #define SLASH(c)     ((c) == '/' || (c) == '\\')
#endif

#ifndef CHSEPSTR
  #define CHSEPSTR                "\\"
#endif

extern unsigned gbPathSearch;

extern int	FileExists		( char *szFile);
extern int	IsDirEmpty		( char *szPath);
extern int	BigReadWrite	( int iFile, char far *Buf, long lBytes, int RdWr);
extern int	RenameFCB		( char *szFrom, char *szTo);
extern int	ReplaceFile 	( char *szSource, char *szDestin);
extern int	AbsUnlink		( char *szFile );

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?