VC中获取文件路径
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VC中获取文件路径相关的知识,希望对你有一定的参考价值。
在VC程序中获取一个*.xls文件的路径,并调用。
说的具体些。
//获取打开文件的文件名(包括文件的扩展名)
//注意:参数FileName为OpenFileDialog.FileName
public string GetFileName(string FileName)
string[] Names = FileName.Split(new char[]'\\');
string Name = Names[Names.Length-1];
return Name;
//获取打开文件的路径
//注意:参数FileName为OpenFileDialog.FileName
public string GetPath(string FileName)
string path = FileName.Replace(GetFileName(FileName),"");
return path; 参考技术B 知道大概路径吗
比如在某个盘 某个文件夹
CString appPath;
GetModuleFileName(AfxGetInstanceHandle(), appPath.GetBuffer(MAX_PATH), MAX_PATH);
//注:使用该API函数得到的是程序文件完整路径文件名,去掉文件名后才是路径。
appPath.ReleaseBuffer();
int n = appPath.ReverseFind( '\\ ');
CString helpFile;
helpFile = appPath.Left(n);
TCHAR c = helpFile.GetAt(n - 1);
if(c == '\\ ') helpFile += "坐标浓度.mdb ";
else helpFile += "\\坐标浓度.mdb "; 参考技术C 记忆是否像苍蝇烦扰它们的耳朵?
杨柳招摇披绿装,
个姿个彩筛筛然
佛罗拿,一种麻醉剂。
此刻我想起远方的麦田
总你的卸的又穿本回答被提问者采纳 参考技术D DWORD GetCurrentDirectory( DWORD nBufferLength, LPTSTR lpBuffer );
得到本进程当前的路径
参考资料:http://zhidao.baidu.com/question/4285971.html?fr=qrl3
如何获取给定目录中的所有文件名
【中文标题】如何获取给定目录中的所有文件名【英文标题】:How to get all filename in a given directory 【发布时间】:2009-11-12 13:25:39 【问题描述】:我想获取给定路径中的文件名,是否有可用的 api。我的编程环境是vc++ mfc
【问题讨论】:
【参考方案1】:您应该查看FindFirstFile 和FindNextFile,或MFC 的包装器CFileFind。
【讨论】:
【参考方案2】:Boost 有一个很好的独立于平台的filesystem library。它将与 MFC 一起使用。
这是来自their reference 的示例:
#include <iostream>
#include <filesystem>
using std::tr2::sys;
using std::cout;
int main(int argc, char* argv[])
std::string p(argc <= 1 ? "." : argv[1]);
if (is_directory(p))
for (directory_iterator itr(p); itr!=directory_iterator(); ++itr)
cout << itr->path().filename() << ' '; // display filename only
if (is_regular_file(itr->status())) cout << " [" << file_size(itr->path()) << ']';
cout << '\n';
else cout << (exists(p) ? "Found: " : "Not found: ") << p << '\n';
return 0;
【讨论】:
【参考方案3】:您也可以使用 MFC:CFileFind
【讨论】:
【参考方案4】:还有CListBox::Dir。如果您想用文件名填充列表框,这非常方便。
【讨论】:
以上是关于VC中获取文件路径的主要内容,如果未能解决你的问题,请参考以下文章