📄 fileaccess.h
字号:
// FileAccess.h: interface for the FileAccess class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_FILEACCESS_H__1825F200_E197_4EF5_B7BA_9FF663DD4356__INCLUDED_)
#define AFX_FILEACCESS_H__1825F200_E197_4EF5_B7BA_9FF663DD4356__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class FileAccess
{
public:
CString m_strFileName;
CStdioFile m_stdFile;
CFileStatus m_stdFileStatus;
CString m_strFileRecord;
bool writerecord();
bool readrecord(int);
FileAccess(CString);
virtual ~FileAccess();
};
#endif // !defined(AFX_FILEACCESS_H__1825F200_E197_4EF5_B7BA_9FF663DD4356__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -