dirfile.h

来自「蓝牙设备搜索与连接 RDSTerminal」· C头文件 代码 · 共 16 行

H
16
字号
#pragma once
#include "global.h"

DLL_INTERNAL int WriteDataToFile(LPCTSTR filename,void* data,long size,LPCTSTR mode, int nStartPos=-1 );
DLL_INTERNAL int ReadDataFromFile(LPCTSTR filename,void* data,long size, int nStartPos=-1);
DLL_INTERNAL CString StandardizationFileForPathName ( LPCTSTR lpszFileOrPathName, BOOL bIsFileName, char cReplaceChar=_T('_') );
DLL_INTERNAL void StandardizationPathBuffer ( LPTSTR szPath, int nSize, TCHAR cFlagChar=_T('\\') );
DLL_INTERNAL CString StandardizationPathBuffer ( LPTSTR lpszPath, TCHAR cFlagChar=_T('\\') );
DLL_INTERNAL BOOL PartFileAndPathByFullPath (
		IN LPCTSTR lpszFilePath,
		OUT TCHAR *szOnlyFileName,
		int nFileNameSize,
		OUT TCHAR *szOnlyPath =NULL,
		int nPathSize=0
	);
DLL_INTERNAL int hwGetFileAttr ( LPCTSTR lpFileName, DWORD *p_dwCreateTime=NULL );

⌨️ 快捷键说明

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