Functions.JustExt 方法 (String, Boolean) | |
返回完整路径中的驱动器号。
命名空间:
XSharp.VFP
程序集:
XSharp.VFP (在 XSharp.VFP.dll 中) 版本:2.22 GA
语法 FUNCTION JustExt(
cPath AS STRING,
lOptWithLeadingDot AS LOGIC
) AS STRING
public static string JustExt(
string cPath,
bool lOptWithLeadingDot
)
查看代码参数
- cPath
- 类型:String
指定文件的名称,该名称可以包含完整路径,用于提取信息。
传递给 cPath 的字符串的最大长度由操作系统确定。
- lOptWithLeadingDot
- 类型:Boolean
返回值
类型:
String字符串
示例 1? JustDrive("C:\Folder\test.txt")
2? JustExt("C:\Folder\test.txt")
3? JustPath("C:\Folder\test.txt")
4? JustFName("C:\Folder\test.txt")
5? JustStem("C:\Folder\test.txt")
参见