⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 autodispose2.h

📁 能够自动给大量文件按特定的大小分类. 如有500G的大量文件.可以按自定义大小和并按最佳的组合方适分发在有序独立的文件夹里 我主要用来刻录DVD自动分文件用.
💻 H
字号:
// AutoDispose2.h : main header file for the AUTODISPOSE2 application
//

#if !defined(AFX_AUTODISPOSE2_H__6097B43A_494F_4390_B53F_2E7696DAF47A__INCLUDED_)
#define AFX_AUTODISPOSE2_H__6097B43A_494F_4390_B53F_2E7696DAF47A__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#ifndef __AFXWIN_H__
	#error include 'stdafx.h' before including this file for PCH
#endif

#include "resource.h"		// main symbols

/////////////////////////////////////////////////////////////////////////////
// CAutoDispose2App:
// See AutoDispose2.cpp for the implementation of this class
//
#define DEBUG 0
#define DVD 1
#if DVD
#define MAX_DISPOSE_SIZE 4700000000 
#define RECE_DISPOSE_SIZE 4400000000//receivability
#else
#define MAX_DISPOSE_SIZE 7000000 
#define RECE_DISPOSE_SIZE 6000000//receivability
#endif

class CAutoDispose2App : public CWinApp
{
public:
	CAutoDispose2App();

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CAutoDispose2App)
	public:
	virtual BOOL InitInstance();
	//}}AFX_VIRTUAL

// Implementation

	//{{AFX_MSG(CAutoDispose2App)
		// NOTE - the ClassWizard will add and remove member functions here.
		//    DO NOT EDIT what you see in these blocks of generated code !
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

struct tagFileInfo  
{
	CString pszFileName;
	CString pszFilePath;
	bool bDisposed;
	double pszFileSize;
	tagFileInfo* pNext;
	tagFileInfo* pPrev;
	ULONG ulCount;
	ULONG ulDisPos;
};

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_AUTODISPOSE2_H__6097B43A_494F_4390_B53F_2E7696DAF47A__INCLUDED_)

⌨️ 快捷键说明

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