TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
yokzu
NA
306
0
Simple string question
Sep 14 2011 7:28 AM
Hello,
I just want to insert today's date into backup files name. Codes are below;
-------------
string today = DateTime.Today.ToShortDateString().ToString();
string parametre1 = "/C mysqldump -u root -pcsi csfdb force_db_ci >
backup_'"+today+"'_1.sql
"; // now closing cmd window
Process islem = new Process();
islem.StartInfo.FileName = "C:\\Windows\\System32\\cmd.exe";
...
------------
How can I insert today's string into backup file's name?
Reply
Answers (
4
)
How to increase height of datagridview columns
Why should i use abstract class?