filenamehelpers.h

来自「利用Windows API来计算MD5的MFC例程.计算MD5时主要用到了Cry」· C头文件 代码 · 共 23 行

H
23
字号
//*****************************************************************************
// FILE: FileNameHelpers.h
// DESC: Header file for modules containing functions to extract file title and
//       file path given a filename.
// 
// By Giovanni Dicanio <giovanni.dicanio@gmail.com>
// 2008, September 26th
//*****************************************************************************

#pragma once

 
namespace FileNameHelpers {

// Given a file name, returns the file path
CString GetFilePath( LPCTSTR fileName );

// Given a file name, returns the file title
CString GetFileTitle( LPCTSTR fleName );

} // namespace FileNameHelpers

⌨️ 快捷键说明

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