ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   How to check if a file exists in an ftp folder (https://www.excelbanter.com/excel-discussion-misc-queries/88713-how-check-if-file-exists-ftp-folder.html)

LL Cool A

How to check if a file exists in an ftp folder
 
Hi all,

Do any of you guys (and gals) know how to check via vb if a file in an ftp
folder exists?

Thanks.

Jim Cone

How to check if a file exists in an ftp folder
 
Will you know the file path when the code is run?
What is an ftp folder?
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware


"LL Cool A"
wrote in message
Hi all,
Do any of you guys (and gals) know how to check via vb if a file in an ftp
folder exists?
Thanks.

LL Cool A

How to check if a file exists in an ftp folder
 
Yes, I will know the file path. The folder is located on an ftp site.

"Jim Cone" wrote:

Will you know the file path when the code is run?
What is an ftp folder?
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware


"LL Cool A"
wrote in message
Hi all,
Do any of you guys (and gals) know how to check via vb if a file in an ftp
folder exists?
Thanks.


Jim Cone

How to check if a file exists in an ftp folder
 
Well, I am still ignorant, but give one or both of these a try
and see what happens.
Replace the file path shown in the function calls with the
correct file path.
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware


Sub CallFirstFunction()
Call FindFile("C:\Documents and Settings\user\My Documents\File Name.xls")
End Sub

Function FindFile(ByRef strPath As String)
Dim strFile As String
strFile = Dir(strPath)
If Len(strFile) Then
MsgBox "File Exists"
Else
MsgBox "File does not exist"
End If
End Function
'------------------

Sub CallSecondFunction()
MsgBox ReportFileStatus("C:\Documents and Settings\user\My Documents\File Name.xls")
End Sub

Function ReportFileStatus(filespec)
Dim fso As Object
Dim msg As String
Set fso = CreateObject("Scripting.FileSystemObject")
If (fso.FileExists(filespec)) Then
msg = filespec & " exists. "
Else
msg = filespec & " doesn't exist. "
End If
ReportFileStatus = msg
Set fso = Nothing
End Function
'-----------------------------------



"LL Cool A"

wrote in message
Yes, I will know the file path. The folder is located on an ftp site.

"Jim Cone" wrote:
Will you know the file path when the code is run?
What is an ftp folder?
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware


"LL Cool A"
wrote in message
Hi all,
Do any of you guys (and gals) know how to check via vb if a file in an ftp
folder exists?
Thanks.



All times are GMT +1. The time now is 10:57 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com