USUÁRIO:      SENHA:        SALVAR LOGIN ?    Adicione o VBWEB na sua lista de favoritos   Fale conosco 

 

  Fórum

  Visual Basic
Voltar
Autor Assunto:  Retornar o nome do arquivo
Josefh Hennyere
Pontos: 2843
SALVADOR
BA - BRASIL
Postada em 16/10/2004 01:40 hs         
Utilizo a função abaixo para retornar o nome e o path do arquivo:
Function GetLongFile(Filename As String)
Dim lPos As Long
lPos = InStrRev(Filename, ":")
If lPos > 0 Then
    GetLongFilePath = Mid(Filename, lPos - 1, 255)
Else
    GetLongFilePath = ""
End If
End Function
Assim se escrever:
 
HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionSharedDLLsC:Arquivos de programasMicrosoft OfficeOffice101046MSOHELP.EXE,"1"
 
Ele retorna:
 
C:Arquivos de programasMicrosoft OfficeOffice101046MSOHELP.EXE,"1"
 
O problema é que se utilizar uma função para verificar se o arquivo existe, ela retorna  "false" porque a parte ,"1" que segue depois da extensão .EXE é apenas uma referência do registro do windows, e não faz parte do arquivo. Ou seja ele tem que retornar C:Arquivos de programasMicrosoft OfficeOffice101046MSOHELP.EXE
 
Josefh Hennyere S Miranda
 
     
Josefh Hennyere
Pontos: 2843
SALVADOR
BA - BRASIL
Postada em 16/10/2004 18:00 hs         
Por favor alguém sabe responder?
     
ghost_jlp
Pontos: 2843 Pontos: 2843 Pontos: 2843 Pontos: 2843
SÃO PAULO
SP - BRASIL
Postada em 16/10/2004 18:40 hs            
Me diga, a  resposta vem com aspas no final assim:
C:Arquivos de programasMicrosoft OfficeOffice101046MSOHELP.EXE,"1"
 
ou assim:
 
C:Arquivos de programasMicrosoft OfficeOffice101046MSOHELP.EXE,1
 
?????
     
Josefh Hennyere
Pontos: 2843
SALVADOR
BA - BRASIL
Postada em 17/10/2004 06:05 hs         
Geralmente aparece das dus formas
 
     
ghost_jlp
Pontos: 2843 Pontos: 2843 Pontos: 2843 Pontos: 2843
SÃO PAULO
SP - BRASIL
Postada em 17/10/2004 22:54 hs            
Nem parei pra pensar se existe forma mais fácil mas procurei não mexer muito na tua função pra não te atrapalhar, será q assim serve?
 
Function GetLongFile(Filename As String)
Dim lPos As Long
lPos = InStrRev(Filename, ":")
If lPos > 0 Then
    getlongfilepath = Mid(Filename, lPos - 1, 255)
    getlongfilepath = Left(getlongfilepath, InStrRev(getlongfilepath, ",") - 1) 'mexi aqui
Else
    getlongfilepath = ""
End If
End Function
 
Acrescentei uma linha... segundo o seu exemplo volta como vc quer mas não sei em relação a todo tipo de string q vai entrar nesta função...
 
Tentei...
     
Josefh Hennyere
Pontos: 2843
SALVADOR
BA - BRASIL
Postada em 18/10/2004 01:34 hs         
Olha, fiz assim e funcionou
 
Function GetLongFile(Filename As String)
On Error Resume Next
Dim lPos        As Long
Dim MaxChar     As Integer
lPos = InStrRev(Filename, ":")
If lPos > 0 Then
    GetLongFile = Mid(Filename, lPos - 1, 260)
    If Right(GetLongFile, InStr(GetLongFile, ".")) Then
    If Right(GetLongFile, 1) = "!" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, "!") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = "@" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, "@") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = "#" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, "#") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = "$" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, "$") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = "%" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, "%") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = "¨" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, "¨") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = "&" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, "&") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = "*" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, "*") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = "-" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, "-") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = "=" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, "=") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = "+" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, "+") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = "," Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, ",") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = "^" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, "^") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = ";" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, ";") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = "|" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, "|") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = "<" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, "<") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = ">" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, ">") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = " " Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, " ") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = "(" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, "(") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = ")" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, ")") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = "]" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, "]") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = "}" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, "}") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = "º" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, "º") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = "ª" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, "ª") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = "´" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, "´") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = "`" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, "`") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = "¬" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, "¬") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = "¢" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, "¢") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = "¹" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, "¹") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = "²" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, "²") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = "³" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, "³") - 1)  'acrescentei esta linha
    If Right(GetLongFile, 1) = "£" Then _
    GetLongFile = Left(GetLongFile, InStrRev(GetLongFile, "£") - 1)  'acrescentei esta linha
    End If
Else
    GetLongFile = ""
End If
End Function
Se o primeiro caractere à direita do arquivo for algum desses caracteres mensionados, o caractere é eliminado.
 
Caso tenha uma outra forma, mais simples, por favor postar.
     
Página(s): 1/2      PRÓXIMA »


Seu Nome:

Seu eMail:

ALTERAR PARA MODO HTML
Mensagem:

[:)] = 
[:P] = 
[:(] = 
[;)] = 

HTML DESLIGADO

     
 VOLTAR

  



CyberWEB Network Ltda.    © Copyright 2000-2025   -   Todos os direitos reservados.
Powered by HostingZone - A melhor hospedagem para seu site
Topo da página