# CSV Exports Directory

This directory is used by the Galopins Tools WWC plugin to temporarily store generated CSV files before they are uploaded to the WordPress media library.

## Purpose

When a form is submitted through Elementor, the plugin:
1. Generates a CSV file from the form data
2. Temporarily saves it in this directory
3. Uploads it to the WordPress media library
4. Removes the temporary file

## Requirements

- This directory must exist for the plugin to function correctly
- Write permissions must be enabled (755 or 775)
- The directory should be kept empty in version control

## Permissions

If you encounter permission errors, ensure the directory has the correct permissions:

```bash
chmod 755 csv-exports
```

Or via FTP, set permissions to 755 (rwxr-xr-x).

## Security

- CSV files are temporary and automatically cleaned up
- Files are not publicly accessible unless uploaded to media library
- This directory should remain empty in your repository

## Troubleshooting

If CSV generation fails:
1. Verify this directory exists
2. Check directory permissions (must be writable)
3. Check PHP error logs for file write errors
4. Ensure sufficient disk space is available