redapple2008 发表于 2009-9-14 21:43:17

路径问题

本帖最后由 redapple2008 于 2009-9-14 23:57 编辑

如果是D:\FlashFxp\flashfxp.exe这个路径,我想得到为D:\FlashFxp\这个目录怎么写代码?

netegg 发表于 2009-9-14 21:59:41

$I=stringsplit($path, "\")
stringtrimright($path, Stringlen($I[$I]))

gto250 发表于 2009-9-14 23:22:55

#include <file.au3>
#include <array.au3>
Dim $szDrive, $szDir, $szFName, $szExt
$TestPath = _PathSplit("D:\FlashFxp\flashfxp.exe", $szDrive, $szDir, $szFName, $szExt)
MsgBox(0,"",$TestPath&$TestPath)


http://lwc.nhome.cn/code/showip.asp

redapple2008 发表于 2009-9-14 23:57:40

谢谢楼上两位,问题解决。
页: [1]
查看完整版本: 路径问题