📄 dirfile.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -