Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Python for File Systems Manipulation Daily Backup

help, i don't know whats wrong with the code

Bummer try again

backup.py
import os
import datetime

def create_daily_dir(arg):
    direc = datetime.strftime(arg, '%Y-%m-%d')
    if os.path.exists('financial'):
        os.mkdir('direc')
    else:
        return false

1 Answer

Steven Parker
Steven Parker
229,644 Points

This function is designed to take a datetime argument (named "arg"), but the instructions say "This function should take a string". So you'll need to handle it as a string or convert to a datetime first.

Also remember that the argument "will be a date in either year-month-day (2012-12-22) or month-day-year (12-22-2012) format." So your function will need to recognize which format the argument is in and process it accordingly.