Rename file with date

Dear all..
i have many file with name by modified julian date..i have used matlab progrrming JD2CAL (Converts Julian date to calendar date using algorithm).. It is succesfull but the problem is when day in January , November and December..For example 1112007.txt represent for 11/1/2007 but problem for file date 1/11/2007 ..it also will rename the file with 1112007.txt..So, the data for this two date will mix together..how i can solve it?

1 件のコメント

TAB
TAB 2012 年 7 月 12 日
What if use notation like DS_MM_YYYR.txt (for eg. 01_11_2007.txt) ...?

サインインしてコメントする。

回答 (2 件)

Jan
Jan 2012 年 7 月 12 日
編集済み: Jan 2012 年 7 月 12 日

1 投票

Either use 2 digits for the day and the month, or add a separator.
sprintf('%.2d%.2d%.4d', 1, 1, 2007)
sprintf('%d_%d_%d', 1, 1, 2007)
I'd prefer this, because the alphabetical order equals the temporal order:
sprintf('%.4d%.2d%.2d', year, month, day)
Azzi Abdelmalek
Azzi Abdelmalek 2012 年 7 月 16 日
編集済み: Azzi Abdelmalek 2012 年 8 月 8 日

0 投票

file=datestr(datenum(date),'dd/mm/yyyy')
file([3,6])=[]
file=[file '.txt']

3 件のコメント

joo tan
joo tan 2012 年 8 月 8 日
Dear Azzi
my file is not name like 11/1/2012..original file is julian date. after i convert to calendar date, it will clash between file for date 1 november and 11 jan because this file will have name 111 at front..so i need to modified to make different name 0111 for 1 Nov and 1101 for 11 jan
Image Analyst
Image Analyst 2012 年 8 月 8 日
joo tan, you'll note that you did not give any examples of your initial, original filenames/strings, or the desired, ending filenames. You just gave one filename so it's not clear what you are starting with. We don't know if you have actual filenames that you need to convert, or some strings that you want to build up with the current date that you will then use to create the file, or something else. If you clarified your situation, you'd eliminate all the confusion and guessing that you're causing.
Star Strider
Star Strider 2012 年 8 月 9 日
The jd2cal function returns [yr,mn,dy]. It is not the source of the ambiguity.

サインインしてコメントする。

カテゴリ

質問済み:

2012 年 7 月 12 日

Community Treasure Hunt

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

Start Hunting!

Translated by