Rename file with date
4 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(2 个)
Azzi Abdelmalek
2012-7-16
编辑:Azzi Abdelmalek
2012-8-8
file=datestr(datenum(date),'dd/mm/yyyy')
file([3,6])=[]
file=[file '.txt']
3 个评论
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
2012-8-9
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Calendar 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!