Reputation: 3039
In the "C:/wamp/tmp/" folder (where session files are stored),
I have one file named session_dir, that contents only this text:
session directory
What is it? Can I delete it?
Upvotes: 1
Views: 2656
Reputation: 136
The default Wamp installation has this line in php.ini :
session.save_path = "c:/wamp/tmp"
You can remove the file you mentionned. In your future devs, if you use sessions, you should find some session files in this dir.
Upvotes: 2