Video Youtube
Nessa aula vou mostrar como verificar se diretorio Existe
This lesson will show how to check if directory exists
Cette leçon va vous montrer comment vérifier si le répertoire existe
http://doc.windev.com/en-US/?1000021899&name=fdirexist_function
http://doc.pcsoft.fr/fr-FR/?1000021899&name=frepexiste_fonction
s_diretorio is string="e:\aleva1"
IF fDirExist(s_diretorio) THEN
Info("Ja existe diretorio")
ELSE
Info("Nao Existe")
END
s_diretorio est chaîne="e:\aleva1"
SI fRepExiste(s_diretorio) ALORS
Info("Ja existe diretorio")
SINON
Info("Nao Existe")
FIN
WinDev - Arquivos - 001/... Listar Arquivos de um Diretório e Mostrar Tabela
WinDev - Arquivos - 002/... Diretório - Verificar Se Existe - fDirectoryExist
WinDev - Arquivos - 003/... Diretorio - Criar - FmakeDir
WinDev - Arquivos - 004/... Arquivos - Extrair Dados - Fextractpath
WinDev - Arquivos - 005/... Renomear Arquivos - FRename
WinDev - Arquivos - 006/... Diretório - Verificar Se Existe - FDirExist
WinDev - Arquivos - 007/... Ver Se Arquivo Existe - FFileExist
WinDev - Arquivos - 008/... FcopyFile - > Copiar Arquivos
http://doc.windev.com/en-US/?1000021899&name=fdirexist_function
Exemplo - ver se diretorio existe
s_diretorio is string="e:\aleva1"
IF fDirExist(s_diretorio) THEN
Info("Ja existe diretorio")
ELSE
Info("Nao Existe")
END
//Blog com Video e Exemplo
http://doc.pcsoft.fr/fr-FR/?1000021899&name=frepexiste_fonction
Exemplo - ver se diretorio existe
s_diretorio est chaîne="e:\aleva1"
SI fRepExiste(s_diretorio) ALORS
Info("Ja existe diretorio")
SINON
Info("Nao Existe")
FIN
//Blog com Video e Exemplo