回 帖 发 新 帖 刷新版面

主题:如何得到上级子目录?

知道一文件所在的子目录,但不知道其上一级目录,该如何办?
例如:知道文件www.txt 所在的位置  D:\TEXT\....\TEXT1\ww.txt,如何得到\TEXT1\ww.txt的上一级子目录....?
谢谢!

回复列表 (共3个回复)

沙发

注意!你这里提供的D:\TEXT\....\TEXT1\ww.txt是文件名,而不是子目录。
下面,我分别按两种情况给你做一下。
dim 目录 as string,父目录 as string
dim i as integer
目录="D:\TEXT\123\456\789\TEXT1"
找到=false
for i=len(目录) to 1 step -1
    if mid(目录,i,1)="\" then
        找到=true
        exit for
    endif
next i
if 找到 then
    父目录=left(目录,i-1)
else
    msgbox "你的目录字符串不正确"
endif

dim 文件名 as string,目录 as string,父目录 as string
dim i as integer
文件名="D:\TEXT\123\456\789\TEXT1\ww.txt"
找到=false
for i=len(文件名) to 1 step -1
    if mid(文件名,i,1)="\" then
        找到=true
        exit for
    endif
next i
if 找到 then
    目录=left(文件名,i-1)
    找到=false
    for i=len(目录) to 1 step -1
        if mid(目录,i,1)="\" then
            找到=true
            exit for
        endif
    next i
    if 找到 then
        父目录=left(目录,i-1)
        ? “父目录:”;父目录
    else
        msgbox "你的文件在根目录下!或者文件名字符串不正确。"
    endif
else
    msgbox "你的文件名字符串不正确"
endif

板凳

Based at the [url=http://www.brandshoes-shop.com/]Mbt Shoes Clearance[/url] makers of mbt scarpe, our physiques and ft are not accustomed to existing standard life.[url=http://www.brandshoes-shop.com/]Mbt Shoes[/url] just like a result, we knowledge however again serious pain and foot serious pain when jogging in shoes. based on MBT, “natural [url=http://www.brandshoes-shop.com/mbt-shoes-clearance-women-c-3.html]Mbt Shoes Clearance Women[/url] instability has some impressive effectively becoming good aspects.” MBT shoes acquired [url=http://www.brandshoes-shop.com/mbt-shoes-clearance-men-c-1.html]MBT Shoes Clearance Men[/url] been created using the realization the reality that Masai jogging barefoot on uneven soil are much more healthy than we are strolling especially for [url=http://www.brandshoes-shop.com/]MBT[/url]. 

3 楼

The world [url=http://www.mygucci-outlet.com/]Gucci Bags[/url] is simply not merely a rosebed now however it does not dimediumsh our eternal really like of rose. The Gucci method Hobo Roses Speedy 41 is obviously an component [url=http://www.mygucci-outlet.com/gucci-wallets-c-23.html]Gucci Wallets[/url] of the Sprouse seletion for tumble 3119. it is only a little bit classic and would [url=http://www.mygucci-outlet.com/]Gucci Outlet[/url] quite possibly be loved by numerous top-notch women and quite quite possibly grannies along with [url=http://www.mygucci-outlet.com/]Gucci Bag[/url] the most of these fundamentally adore something in floral.This Stephen Sprouse-inspired method Hobo went up by jockey definitely has fluorescent went [url=http://www.mygucci-outlet.com/]Gucci Handbags[/url] up by routine.

我来回复

您尚未登录,请登录后再回复。点此登录或注册