Command Line
Download a file via a FTP URL (see FTP URL's for more information).
From the command line type:
drive:\(coreftp path)\coreftp.exe -d ftp://ftp.yoursite.com/directory/yourfile.dat
or
drive:\(coreftp path)\coreftp.exe ftp://ftp.yoursite.com/directory/yourfile.dat
This will download the file into the default download directory...
Friday, June 1, 2018
Labels:
command,
Core,
core ftp,
CoreFtp,
coreftpexe,
download file,
exe,
FTP,
FTP url,
Janak Goti,
line,
upload file
Friday, March 30, 2018
Exporting data from SQL Server to CSV file in ASP.Net using C#
Namespaces
You will need to import the following namespaces.
using System.Data;
using System.Configuration;
using System.Data.SqlClient;
Code For Export DataTable to CSV
protected void ExportCSV(object sender, EventArgs e)
{
string constr...