I am trying to create a folder based off of the current month/day using DateTime. After i initialize a new DateTime( 2011, 5, 16, 1, 1, 30); will this keep itself updated or reset every time the program is ran?
|
|
A DateTime(2011, 5, 16, 1, 1, 30); is an object which gets initialized with the date you provide as a constructor. The date will always stay the same. If you want to get the current date then you need to use |
|||||
|
|
When you give specific parameters in your If you want to use the current time, and have that update each time you run the program, use |
|||
|
|
|
A
As you can see |
||||
|
|
|
If the code looks like that it will be the same every time. If you want the the current day use |
|||
|
|
|
No, |
|||
|
|