资源简介
支持文件上传下载,以及在线浏览目录。等功能
代码片段和文件信息
// FileTree.cpp : implementation file
//
#include “stdafx.h“
#include “FtpClient.h“
#include “FileTree.h“
//add new
#include “MainFrm.h“
#include “FtpClientView.h“
#include “MsgShow.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CFileTree
IMPLEMENT_DYNCREATE(CFileTree CTreeView)
CFileTree::CFileTree()
{
tree = &GetTreeCtrl();
m_bDragging = false;
}
CFileTree::~CFileTree()
{
}
BEGIN_MESSAGE_MAP(CFileTree CTreeView)
//{{AFX_MSG_MAP(CFileTree)
ON_NOTIFY_REFLECT(TVN_BEGINDRAG OnBegindrag)
ON_WM_LBUTTONUP()
ON_WM_MOUSEMOVE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CFileTree drawing
void CFileTree::OnDraw(CDC* pDC)
{
CDocument* pDoc = GetDocument();
// TODO: add draw code here
}
/////////////////////////////////////////////////////////////////////////////
// CFileTree diagnostics
#ifdef _DEBUG
void CFileTree::AssertValid() const
{
CTreeView::AssertValid();
}
void CFileTree::Dump(CDumpContext& dc) const
{
CTreeView::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CFileTree message handlers
VOID CFileTree::deleteItem()
{
tree->DeleteAllItems();
}
//注:函数只适用于遍历目录,而非查找文件
VOID CFileTree::BrowseDir(CString strDirHTREEITEM hParent)
{
CFileFind fFind;
CString strFileName;
if(strDir.Right(2) != “\\“) //important!
{
strDir += “\\*.*“;
}
BOOL IsTrue = fFind.FindFile(strDir);
while(IsTrue)
{
IsTrue = fFind.FindNextFile();
if( fFind.IsDirectory() && !fFind.IsDots() )
{
CString strPath = fFind.GetFilePath();
strFileName = fFind.GetFileName();
HTREEITEM hChild = tree->InsertItem(strFileName00hParent);
BrowseDir(strPathhChild);
}
else if( !fFind.IsDirectory() && !fFind.IsDots() )
{
strFileName = fFind.GetFileName();
tree->InsertItem(strFileName11hParent);
}
}
fFind.Close();
}
BOOL CFileTree::PreCreateWindow(CREATESTRUCT& cs)
{
// TODO: Add your specialized code here and/or call the base class
//add new 更改控件的style
cs.style |= TVS_HASBUTTONS|TVS_HASLINES|TVS_LINESATROOT|TVS_EDITLABELS;
return CTreeView::PreCreateWindow(cs);
}
void CFileTree::OnInitialUpdate()
{
CTreeView::OnInitialUpdate();
// TODO: Add your specialized code here and/or call the base class
//获取图标句柄
HICON hicon1 = AfxGetApp()->LoadIcon(IDI_ICON1);
HICON hicon2 = AfxGetApp()->LoadIcon(IDI_ICON2);
//创建图标列表
m_lpImagelist.Create(1616ILC_COLOR1622);
m_lpImagelist.Add(hicon1);
m_lpImagelist.Add(hicon2);
//关联图像列表
tree->SetImageList(&m_lpImagelistTVSIL_NORMAL);
}
void CFileTree::OnBegindrag(NMHDR* pNMHDR LRESULT* pResult)
{
NM_TREEVIEW* pNMTreeView = (NM_TREEVIEW*)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 42945 2013-03-28 16:03 FtpClient\Debug\FileTree.obj
文件 0 2013-03-28 16:03 FtpClient\Debug\FileTree.sbr
文件 5530624 2013-03-28 16:22 FtpClient\Debug\FtpClient.bsc
文件 143456 2013-03-28 16:22 FtpClient\Debug\FtpClient.exe
文件 452552 2013-03-28 16:22 FtpClient\Debug\FtpClient.ilk
文件 25470 2013-01-12 16:06 FtpClient\Debug\FtpClient.obj
文件 7011184 2013-01-12 10:48 FtpClient\Debug\FtpClient.pch
文件 623616 2013-03-28 16:22 FtpClient\Debug\FtpClient.pdb
文件 9640 2013-01-12 16:06 FtpClient\Debug\FtpClient.res
文件 0 2013-01-12 16:06 FtpClient\Debug\FtpClient.sbr
文件 14871 2013-01-12 10:48 FtpClient\Debug\FtpClientDoc.obj
文件 0 2013-01-12 10:48 FtpClient\Debug\FtpClientDoc.sbr
文件 43309 2013-03-28 16:22 FtpClient\Debug\FtpClientView.obj
文件 0 2013-03-28 16:22 FtpClient\Debug\FtpClientView.sbr
文件 33198 2013-01-14 11:12 FtpClient\Debug\MainFrm.obj
文件 0 2013-01-14 11:13 FtpClient\Debug\MainFrm.sbr
文件 19915 2013-01-12 13:32 FtpClient\Debug\MsgShow.obj
文件 0 2013-01-12 13:44 FtpClient\Debug\MsgShow.sbr
文件 105654 2013-01-12 13:31 FtpClient\Debug\StdAfx.obj
文件 1376875 2013-01-12 13:31 FtpClient\Debug\StdAfx.sbr
文件 246784 2018-08-15 13:13 FtpClient\Debug\vc60.idb
文件 413696 2013-03-28 16:22 FtpClient\Debug\vc60.pdb
文件 6999 2013-03-28 16:03 FtpClient\FileTree.cpp
文件 2155 2013-01-12 11:08 FtpClient\FileTree.h
文件 31568 2018-08-15 13:09 FtpClient\FtpClient.aps
文件 2876 2018-08-15 13:09 FtpClient\FtpClient.clw
文件 4263 2013-01-10 09:17 FtpClient\FtpClient.cpp
文件 5045 2013-01-11 18:21 FtpClient\FtpClient.dsp
文件 543 2013-01-10 09:18 FtpClient\FtpClient.dsw
文件 1389 2013-01-10 09:17 FtpClient\FtpClient.h
............此处省略28个文件信息
相关资源
- MFC课程设计 --学生成绩管理系统
- VC画正弦函数曲线带参数设置
- matlab算法实现声纹识别,带界面
- 基于C++MFC的聊天程序,C/S模式
- MFC ListControl使用
- 21点游戏MFC程序设计 c++课程设计
- MFC 多线程.7z
- mfc编写的像素鸟flappy bird 小游戏-FP_
- ethercat电机mfc简单连接程序
- VC++窗口和控件自适应屏幕尺寸改.ra
- mfc 画多个矩形框,可选中任意一个移
- MFC属性表单
- MFC框架 网络版五子棋 包含游戏大厅
- MFC读取RTSP视频流
- mfc制作的圆形时钟
- 五子棋大作业源码 .zip
- Excel-demo
- 基于mfc的smtp客户端程序
- MFC CCriticalSection 关键段
- C++后缀表达式计算器MFC功能强大
- MFC 视频播放器
- MFC 实时曲线绘制
- 图书馆管理系统MFC版
- 基于VS2010的MFC对话框计算器程序
- MFC显示tiff图像
- mfc按钮美化275689
- STK 与 MFC通信
- MFC 中使用 OpenGL 1.0非微软版本,而是
- VTKMFC显示
- MFC单文档绘图例程
评论
共有 条评论