标题:求助,怎么把相对路径 的绝对路径字符提取出来!
取消只看楼主
suzhanpeng
Rank: 4
等 级:业余侠客
威 望:7
帖 子:72
专家分:248
注 册:2016-9-28
结帖率:75%
已结贴  问题点数:20 回复次数:1 
求助,怎么把相对路径 的绝对路径字符提取出来!
怎么把相对路径 的绝对路径字符提取出来!
例如:App.Path & "\123.txt" 的绝对路径 "D:\123.txt" 提取出来
搜索更多相关主题的帖子: 相对路径 绝对路径 字符 提取 txt 
2017-12-22 21:39
suzhanpeng
Rank: 4
等 级:业余侠客
威 望:7
帖 子:72
专家分:248
注 册:2016-9-28
得分:0 
回复 2楼 ZHRXJR
建议不错
Dim F7 As String, nStr7 As String, nSize7 As Long, S7 As Long
   F7 = App.Path & "\config.ini"
   nSize7 = 255: nStr7 = String(nSize7, 0)
   d7 = GetPrivateProfileString("Form2", "CLpart", vbNullString, nStr7, nSize7, F7)
   S7 = InStr(nStr7, Chr(0))
   If S7 > 0 Then
   nStr7 = Left(nStr7, S7 - 1)  'nStr7在这里提取的字符串是 “ App.Path & "\材质库.sldmat"”
   End If
boolstatus = swApp.SetUserPreferenceStringValue(swUserPreferenceStringValue_e.swFileLocationsMaterialDatabases, nStr7)   '这里nStr7 还是认为了相对路径的字符串,没有变成绝对路径的字符串。

改了一下变成
Label1.Caption=nStr7
boolstatus = swApp.SetUserPreferenceStringValue(swUserPreferenceStringValue_e.swFileLocationsMaterialDatabases, Label1.Caption)  ’OK!!
2017-12-23 17:10



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-483631-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.094857 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved