标签:comm 有用 去除 using clipboard bsp cpp cli 源代码
首先,记录一个网址,感觉很有用,大部分的文件路径相关函数,里面都有源代码。
https://msdn.microsoft.com/en-us/library/windows/desktop/bb773746(v=vs.85).aspx
1、完整路径,去除后缀名 PathRemoveExtensionA
OUTPUT: ================== The path with extension is : C:\TEST\sample.txt The path without extension is : C:\TEST\sample
2、完整文件路径,获得目录
OUTPUT: ================== The path with file spec is : C:\TEST\sample.txt The path without file spec is : C:\TEST
3、获取dll所在路径的两种方式
(1)需要dll入口函数的句柄
(2)无需dll入口函数的句柄,dll内任意函数都可
标签:comm 有用 去除 using clipboard bsp cpp cli 源代码
原文地址:http://www.cnblogs.com/wangjian8888/p/8004491.html