Run Script file from Matlab

5 views (last 30 days)
Brian
Brian on 16 Mar 2012
I've got a few scripts that I'm currently running in VBA to push files to an FTP site. That said, I am no longer doing any of the work in Excel, so running the VBA code to launch the scrips is a pain. My VBA code is essentially replicating a batch file using a Shell command. I'm wondering if I can utilize similar functionality using Matlab. An example of my VB code would be.
Shell(ftp -n -s:"\\lbprds0262\vol3\Eqprod\FactorModel\BB_BMK_SHS_ftp.scr")
Thanks a lot

Accepted Answer

Jacob Halbrooks
Jacob Halbrooks on 16 Mar 2012
Try using MATLAB's FTP function.
doc ftp
  2 Comments
Brian
Brian on 28 Mar 2012
Wow, that was so easy I'm almost embarassed that I had to ask. Thanks for the answer.
The only question that I have is that when I use the close command the ftp object still looks like it's open as a variable. Am I doing something wrong?
Jacob Halbrooks
Jacob Halbrooks on 29 Mar 2012
It is expected that the variable will remain after executing close. If you want the variable gone, use clear after you've used close.

Sign in to comment.

More Answers (0)

Categories

Find more on Introduction to Installation and Licensing in Help Center and File Exchange

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!