I have a file, Test.txt on my desktop. I also have an FTP website. I want a macro to move 'test.txt' from my desktop to my website, ftp://mywebsite.com. I have been using this macro but it doesn't seem to work.
Note: -I am able to save a file as ftp:\\mywebsite.com\Test.txt but not move it.
-My goal is to place a file in my ftp website as text tab delimited but I can't.
Thanks!
Nicole
Code:
Sub Copy_One_File()
FileCopy "C:\Users\Nicole\Desktop\Test.txt", "ftp:\\mywebsite.com\Test.txt"
End Sub
</pre>
-My goal is to place a file in my ftp website as text tab delimited but I can't.
Thanks!
Nicole