import os

def fix_recup_dir():
    """
    Fix the 'No such file or directory' error by creating the target directory.

    :return: None
    """
    dir_path = '/Eden_OLD_2TB/recup_dir.21514'
    if not os.path.exists(dir_path):
        os.makedirs(dir_path)