Search results for query: *

  1. C

    Question Check date modified of multiple files on FTP

    Never-mind, figured it out.
  2. C

    Question Check date modified of multiple files on FTP

    It seems to work, only issue is the date modified time on the server is different than that of my computer. I look in windows file browser and it appears the same, but whenever do msgbox(fdate & " " & datemodified) which displays the time on the server and on computer, it is off by 3 hours...
  3. C

    download multiple ftp files

    Yes, it is called repeatedly. But it IS possible to display a msgBox whenever it finishes downloading, correct?
  4. C

    Preserve date modified of files downloaded off of FTP

    Post got deleted? Anyways, I got the file property working. I didn't see that example part =) I am wondering if there is anyway to open a msgbox whenever Network.Downloadfile completes.
  5. C

    download multiple ftp files

    Okay, well when I use My.Computer.Network.Downloadfile it downloads all the files that are 'out of date' but I need the program to display a message box when its done.
  6. C

    download multiple ftp files

    Okay, thanks. I think I figured that out, only one issue now. I can't download multiple files at once using webclient, but I can with downloadfile. I need the program to wait until ALL the files are done downloading, as it will be doing them all at once. I know I can use webclient with...
  7. C

    Preserve date modified of files downloaded off of FTP

    Dim filez As String filez = ("C:\PATHTOPLACE\" & File) There is no property value for any files that I have declared.
  8. C

    Preserve date modified of files downloaded off of FTP

    I know this, but the only sub classes of Filesysteminfo are Equals and Reference Equals, how would I target something such as ("C:\TestFolder\" & File)
  9. C

    Preserve date modified of files downloaded off of FTP

    Trying to figure out where i'd put this though.
  10. C

    Preserve date modified of files downloaded off of FTP

    Uhhh, how would I set the lastwritetime with fileinfo? Do you have any examples?
  11. C

    Preserve date modified of files downloaded off of FTP

    Okay, cool. I already have the file's lastwritetime info, so all I have to do is use the fileinfo class.
  12. C

    Preserve date modified of files downloaded off of FTP

    Hi, i'm wondering if there is any way to preserve the date modified of files downloaded off of an FTP server using My.Computer.Network.Downloadfile I know you could zip and unzip the file, but it sounds like a lot of trouble.
  13. C

    Question Check date modified of multiple files on FTP

    Fixed it, ran a check to see if the blank file is in the string, and remove it if its in there.
  14. C

    Question Check date modified of multiple files on FTP

    Just tested it, it now closes the stream. It seems that after it has displayed all the files, it gets the file not found error. This seems to be caused by what I said the "blank file" that displays if I "file", for instance "test.txt" "test2.txt" "test3.txt" "" <--- Message box pops up with...
  15. C

    Question Check date modified of multiple files on FTP

    Woops, somehow It got posted wrong. Heres what it looks like. This line : Dim ftp As Net.FtpWebRequest = Net.FtpWebRequest.Create("ftp://someuser:somepass@hosted14.nfoservers.com/public/" & File) should tell it what file. I've tested it, and it works but only for the first two...
  16. C

    Question Check date modified of multiple files on FTP

    Thanks for your help, John. It now checks the date modified of the files on the server in order. But it only does it twice, then gives an error saying it can't find the file. Could this be because it is DIM'ing the file more than once? Or is it cause there seems to be a blank space at the...
  17. C

    Question Check date modified of multiple files on FTP

    Okay, here's the code i'm using currently. I can get it to loop over and tell me the name of each file, but how would I go about making it tell me the files date modified, and then compare that with a file on my computer. -EDIT- I think I can get it to check the file on my computer, but I...
  18. C

    Question Check date modified of multiple files on FTP

    Automatic File Downloader Hi, so I just posted about something similar, although ill tell you exactly what i'm trying to do. So lets say I download a folder from FTP called testFolder, and it has 10 .txt documents inside it. What I want to do is be able to click another button called "update"...
  19. C

    Question Check date modified of multiple files on FTP

    Hi, i'm new to these forums so sorry if i'm posting in the wrong section. I am attempting to open a folder in FTP, and check the date modified of ALL files in that folder. I then want to compare that to the date modified of files on my computer. Is there any way I can do this? I figured out...
Back
Top